We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2093d90 commit 6e54bc2Copy full SHA for 6e54bc2
.github/workflows/rust.yml
@@ -34,10 +34,14 @@ jobs:
34
- name: Pack
35
shell: bash
36
run: |
37
- if [ "$OS" = "Windows_NT" ]; then EXE="target/release/recast.exe"; else EXE="target/release/recast"; fi
38
mkdir bin
39
- cp "$EXE" bin
40
- zip recast-${{ matrix.target }}.zip bin tools
+ if [ "$OS" = "Windows_NT" ]; then
+ cp target/release/recast.exe bin
+ 7z a recast-${{ matrix.target }}.zip bin tools
41
+ else
42
+ cp target/release/recast bin
43
+ zip -r recast-${{ matrix.target }}.zip bin tools
44
+ fi
45
46
- name: Release
47
uses: softprops/action-gh-release@v1
0 commit comments