Skip to content

Commit

Permalink
Use find to fix path in tar.gz
Browse files Browse the repository at this point in the history
  • Loading branch information
Matts966 committed Jun 5, 2020
1 parent 7f0386f commit 2a31b51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
env:
TAG: ${{ steps.tag.outputs.tag }}
run: |
tar -zcvf bin/alphasql_${TAG}_linux_x86_64.tar.gz ./bin/linux
tar -zcvf bin/alphasql_${TAG}_darwin_amd64.tar.gz ./bin/osx
tar -zcvf bin/alphasql_${TAG}_linux_x86_64.tar.gz $(find ./bin/linux -type f)
tar -zcvf bin/alphasql_${TAG}_darwin_amd64.tar.gz $(find ./bin/osx -type f)
- name: Upload Linux Asset
id: upload-linux-asset
Expand Down

0 comments on commit 2a31b51

Please sign in to comment.