File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -107,8 +107,8 @@ jobs:
107107 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
108108 with :
109109 upload_url : ${{ steps.create_release.outputs.upload_url }}
110- asset_path : ./tools_windows_amd64.tar.gz
111- asset_name : tools_windows_amd64.tar.gz
110+ asset_path : ./tools_windows_amd64.zip
111+ asset_name : tools_windows_amd64.zip
112112 asset_content_type : application/octet-stream
113113
114114 - name : Upload windows binary
@@ -118,6 +118,6 @@ jobs:
118118 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
119119 with :
120120 upload_url : ${{ steps.create_release.outputs.upload_url }}
121- asset_path : ./tools_windows_arm64.tar.gz
122- asset_name : tools_windows_arm64.tar.gz
121+ asset_path : ./tools_windows_arm64.zip
122+ asset_name : tools_windows_arm64.zip
123123 asset_content_type : application/octet-stream
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ build_windows_amd64:
6767 cd validator; CGO_ENABLED=0 GOOS=windows go build; cd -
6868 mkdir tools
6969 mv enc/enc.exe foxden/foxden.exe validator/validator.exe tools
70- tar cfz tools_windows_amd64.tar.gz tools
70+ zip -r tools_windows_amd64.zip tools
7171 rm -rf tools
7272
7373build_windows_arm64 :
@@ -76,7 +76,7 @@ build_windows_arm64:
7676 cd validator; CGO_ENABLED=0 GOARCH=arm64 GOOS=windows go build; cd -
7777 mkdir tools
7878 mv enc/enc.exe foxden/foxden.exe validator/validator.exe tools
79- tar cfz tools_windows_arm64.tar.gz tools
79+ zip -r tools_windows_arm64.zip tools
8080 rm -rf tools
8181
8282test :
You can’t perform that action at this time.
0 commit comments