Skip to content

Commit cee74e5

Browse files
committed
Fix *nix releases
1 parent d1e4bc8 commit cee74e5

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,9 @@ jobs:
120120
cp -r repo/assets dist_mac
121121
cp -r repo/assets dist_windows
122122
123-
tar -C dist_linux -Jcvf rust-deploy-test.linux.tar.bz2 .
124-
tar -C dist_mac -Jcvf rust-deploy-test.macos.tar.bz2 .
125-
cd dist_windows
126-
zip -r ../rust-deploy-test.windows.zip .
127-
cd ..
128-
129-
ls
123+
pushd dist_linux; tar -jcvf ../rust-deploy-test.linux.tar.bz2 *; popd
124+
pushd dist_mac; tar -jcvf ../rust-deploy-test.macos.tar.bz2 *; popd
125+
pushd dist_windows; zip -r ../rust-deploy-test.windows.zip .; popd
130126
- name: Delete latest release
131127
uses: author/action-rollback@stable
132128
if: ${{ github.ref == 'refs/heads/main' }}

0 commit comments

Comments
 (0)