Skip to content

Commit

Permalink
Fix tar and zip failures
Browse files Browse the repository at this point in the history
  • Loading branch information
parasyte committed Sep 1, 2021
1 parent a9b8230 commit f1005e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mean_bean_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

# TODO: Compress with UPX
- run: |
cd ./target/${{ matrix.target }}/release/
cd ./target/release/
7z a "${{ env.BIN }}.zip" "${{ env.BIN }}.exe"
mv "${{ env.BIN }}.zip" $GITHUB_WORKSPACE
shell: bash
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
args: --release

# TODO: macOS app package and disk image
- run: tar -czvf ${{ env.BIN }}.tar.gz --directory=target/${{ matrix.target }}/release ${{ env.BIN }}
- run: tar -czvf ${{ env.BIN }}.tar.gz --directory=target/release ${{ env.BIN }}
- name: Get version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
Expand Down

0 comments on commit f1005e6

Please sign in to comment.