Skip to content

Commit

Permalink
Merge pull request #27 from GalaxyPay/dev
Browse files Browse the repository at this point in the history
chore: release v2.0.3
  • Loading branch information
acfunk authored Dec 7, 2024
2 parents 82938b9 + 8a421d0 commit 7afaf7f
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,5 +139,5 @@ jobs:
uses: ncipollo/release-action@v1
with:
allowUpdates: true
tag: v2.0.2
tag: v2.0.3
artifacts: "Output/*"
2 changes: 1 addition & 1 deletion FUNC.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "FUNC"
#define MyAppVersion "2.0.2"
#define MyAppVersion "2.0.3"
#define MyAppPublisher "Galaxy Pay, LLC"
#define MyAppPublisherURL "https://galaxy-pay.com"
#define MyPublishPath "publish"
Expand Down
2 changes: 1 addition & 1 deletion FUNC/Controllers/GoalController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public async Task<ActionResult<string>> GoalUpdate(Models.Release model)
url = latestInfo.Assets.FirstOrDefault(a => a.Name.Contains("node_stable_linux-amd64")
&& a.Name.EndsWith("tar.gz"))?.BrowserDownloadUrl;
if (url == null) return BadRequest();
await Utils.ExecCmd($"wget -L -o {Utils.dataPath}/node.tar.gz {url}");
await Utils.ExecCmd($"wget -L -O {Utils.dataPath}/node.tar.gz {url}");
}

await Utils.ExecCmd($"tar -zxf {Utils.dataPath}/node.tar.gz -C {Utils.dataPath} bin");
Expand Down
4 changes: 2 additions & 2 deletions FUNC/Controllers/RetiController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public async Task<ActionResult> CreateRetiService(RetiCreate model)
{
var url = latest.Assets.FirstOrDefault(a => a.Name.Contains("linux-amd64.tar.gz"))?.BrowserDownloadUrl;
if (url == null) return BadRequest();
await Utils.ExecCmd($"wget -L -o {Utils.dataPath}/reti.tar.gz {url}");
await Utils.ExecCmd($"wget -L -O {Utils.dataPath}/reti.tar.gz {url}");
await Utils.ExecCmd($"tar -zxf {Utils.dataPath}/reti.tar.gz -C {Path.Combine(Utils.dataPath, "reti")}");
}
}
Expand Down Expand Up @@ -108,7 +108,7 @@ public async Task<ActionResult> UpdateReti()
{
var url = latest.Assets.FirstOrDefault(a => a.Name.Contains("linux-amd64.tar.gz"))?.BrowserDownloadUrl;
if (url == null) return BadRequest();
await Utils.ExecCmd($"wget -L -o {Utils.dataPath}/reti.tar.gz {url}");
await Utils.ExecCmd($"wget -L -O {Utils.dataPath}/reti.tar.gz {url}");
await Utils.ExecCmd($"tar -zxf {Utils.dataPath}/reti.tar.gz -C {Utils.dataPath} reti");
}

Expand Down
2 changes: 1 addition & 1 deletion create-package.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
rm -r Output

PKG=Output/func_2.0.2_amd64
PKG=Output/func_2.0.3_amd64

mkdir -p $PKG/lib/systemd/system
mkdir -p $PKG/opt/func
Expand Down
2 changes: 1 addition & 1 deletion deb/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: func
Version: 2.0.2
Version: 2.0.3
Section: base
Priority: optional
Architecture: amd64
Expand Down
2 changes: 1 addition & 1 deletion webui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "func-webui",
"version": "2.0.2",
"version": "2.0.3",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
Expand Down

0 comments on commit 7afaf7f

Please sign in to comment.