Debug package action
This commit is contained in:
parent
52eed02be2
commit
4a4610fb8a
5
.github/workflows/package.yml
vendored
5
.github/workflows/package.yml
vendored
@ -41,6 +41,7 @@ jobs:
|
||||
with:
|
||||
tag_name: ${{ steps.get_version.outputs.VERSION }}
|
||||
release_name: Release ${{ steps.get_version.outputs.VERSION }}
|
||||
body: Update gaianet-domain version to ${{ steps.get_version.outputs.VERSION }}
|
||||
draft: false
|
||||
prerelease: false
|
||||
|
||||
@ -50,8 +51,8 @@ jobs:
|
||||
arch_all='386 amd64 arm arm64 mips64 mips64le mips mipsle riscv64'
|
||||
for os in $os_all; do
|
||||
for arch in $arch_all; do
|
||||
asset_path="./release/packages/frp_${{ steps.get_version.outputs.VERSION }}_${os}_${arch}"
|
||||
asset_name="frp_${{ steps.get_version.outputs.VERSION }}_${os}_${arch}"
|
||||
asset_path="./release/packages/gaianet_domain_${{ steps.get_version.outputs.VERSION }}_${os}_${arch}"
|
||||
asset_name="gaianet_domain_${{ steps.get_version.outputs.VERSION }}_${os}_${arch}"
|
||||
if [ -f "${asset_path}.zip" ]; then
|
||||
echo "Uploading ${asset_name}.zip"
|
||||
gh release upload ${{ steps.get_version.outputs.VERSION }} "${asset_path}.zip"
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
package version
|
||||
|
||||
var version = "v0.1.0"
|
||||
var version = "v0.1.1"
|
||||
|
||||
func Full() string {
|
||||
return version
|
||||
|
Loading…
Reference in New Issue
Block a user