File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change 84
84
case ${{ matrix.job.target }} in
85
85
aarch64-*-linux-*) arch=arm64; os=linux ;;
86
86
i686-*-linux-*) arch=i686; os=linux ;;
87
- x86_64-*-linux-*) arch=amd64 ; os=linux ;;
87
+ x86_64-*-linux-*) arch=x64 ; os=linux ;;
88
88
aarch64-apple-darwin) arch=arm64; os=osx ;;
89
89
x86_64-apple-darwin) arch=x64; os=osx ;;
90
90
*) exit 3 ;;
@@ -132,12 +132,6 @@ jobs:
132
132
command : build
133
133
args : --locked --release
134
134
135
- - name : Make Wix package
136
- run : |
137
- cargo install cargo-wix
138
- cargo wix init
139
- cargo wix
140
-
141
135
- name : Make zip package
142
136
run : |
143
137
python3 ./tools/package/package-archive --archive-type zip --binary ./target/release/bselect.exe --arch x64 --os win
@@ -147,8 +141,6 @@ jobs:
147
141
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
148
142
run : |
149
143
$version = "v${{ steps.get-version.outputs.version }}"
150
- $msi = "$(Get-ChildItem -Path target/wix *.msi)"
151
- python3 ./tools/package/sha256 "${msi}" > "${msi}.sha256"
152
144
$zip = "$(Get-ChildItem -Path . *.zip)"
153
145
python3 ./tools/package/sha256 "${zip}" > "${zip}.sha256"
154
- gh release upload "${version}" "${msi}" "${msi}.sha256" "${ zip}" "${zip}.sha256"
146
+ gh release upload "${version}" "${zip}" "${zip}.sha256"
You can’t perform that action at this time.
0 commit comments