File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 41
41
with :
42
42
tag_name : ${{ steps.get_version.outputs.VERSION }}
43
43
release_name : Release ${{ steps.get_version.outputs.VERSION }}
44
+ body : Update gaianet-domain version to ${{ steps.get_version.outputs.VERSION }}
44
45
draft : false
45
46
prerelease : false
46
47
50
51
arch_all='386 amd64 arm arm64 mips64 mips64le mips mipsle riscv64'
51
52
for os in $os_all; do
52
53
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}"
55
56
if [ -f "${asset_path}.zip" ]; then
56
57
echo "Uploading ${asset_name}.zip"
57
58
gh release upload ${{ steps.get_version.outputs.VERSION }} "${asset_path}.zip"
Original file line number Diff line number Diff line change 14
14
15
15
package version
16
16
17
- var version = "v0.1.0 "
17
+ var version = "v0.1.1 "
18
18
19
19
func Full () string {
20
20
return version
You can’t perform that action at this time.
0 commit comments