File tree Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -93,21 +93,14 @@ jobs:
9393 lipo -create -output ripunzip-macos \
9494 -arch x86_64 target/x86_64-apple-darwin/release/ripunzip \
9595 -arch arm64 target/aarch64-apple-darwin/release/ripunzip
96- - name : Archive (POSIX)
97- if : runner.os != 'Windows'
98- shell : bash
99- run : |
100- zip -j ripunzip-${{ runner.os }}.zip ripunzip-*
101- - name : Archive (Windows)
102- if : runner.os == 'Windows'
103- shell : powershell
96+ - name : Archive
10497 run : |
105- Compress-Archive -Path ripunzip-* -DestinationPath ripunzip- ${{ runner.os }}.zip -Force
98+ tar acf ripunzip-${{ runner.os }}.tar.zst ripunzip-*
10699 - name : Upload built binary
107100 uses : actions/upload-artifact@v4
108101 with :
109102 name : ripunzip-${{ runner.os }}
110- path : ripunzip-${{ runner.os }}.zip
103+ path : ripunzip-${{ runner.os }}.tar.zst
111104 retention-days : 5
112105 compression : 0
113106 - name : Check built binary
You can’t perform that action at this time.
0 commit comments