We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1e4bc8 commit cee74e5Copy full SHA for cee74e5
.github/workflows/deploy.yml
@@ -120,13 +120,9 @@ jobs:
120
cp -r repo/assets dist_mac
121
cp -r repo/assets dist_windows
122
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
+ pushd dist_linux; tar -jcvf ../rust-deploy-test.linux.tar.bz2 *; popd
+ pushd dist_mac; tar -jcvf ../rust-deploy-test.macos.tar.bz2 *; popd
+ pushd dist_windows; zip -r ../rust-deploy-test.windows.zip .; popd
130
- name: Delete latest release
131
uses: author/action-rollback@stable
132
if: ${{ github.ref == 'refs/heads/main' }}
0 commit comments