Skip to content

Commit 4a4610f

Browse files
committed
Debug package action
1 parent 52eed02 commit 4a4610f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/package.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
with:
4242
tag_name: ${{ steps.get_version.outputs.VERSION }}
4343
release_name: Release ${{ steps.get_version.outputs.VERSION }}
44+
body: Update gaianet-domain version to ${{ steps.get_version.outputs.VERSION }}
4445
draft: false
4546
prerelease: false
4647

@@ -50,8 +51,8 @@ jobs:
5051
arch_all='386 amd64 arm arm64 mips64 mips64le mips mipsle riscv64'
5152
for os in $os_all; do
5253
for arch in $arch_all; do
53-
asset_path="./release/packages/frp_${{ steps.get_version.outputs.VERSION }}_${os}_${arch}"
54-
asset_name="frp_${{ steps.get_version.outputs.VERSION }}_${os}_${arch}"
54+
asset_path="./release/packages/gaianet_domain_${{ steps.get_version.outputs.VERSION }}_${os}_${arch}"
55+
asset_name="gaianet_domain_${{ steps.get_version.outputs.VERSION }}_${os}_${arch}"
5556
if [ -f "${asset_path}.zip" ]; then
5657
echo "Uploading ${asset_name}.zip"
5758
gh release upload ${{ steps.get_version.outputs.VERSION }} "${asset_path}.zip"

pkg/util/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
package version
1616

17-
var version = "v0.1.0"
17+
var version = "v0.1.1"
1818

1919
func Full() string {
2020
return version

0 commit comments

Comments
 (0)