Skip to content

Commit

Permalink
Merge pull request #14 from sergkh/using-tarball
Browse files Browse the repository at this point in the history
Switched to tarball format
  • Loading branch information
sergkh authored May 11, 2024
2 parents 91a593d + 0191b76 commit 2b4e224
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,19 @@ jobs:
- name: Rename osx file
run: bash -c 'mv ./release-binary-macos-latest/table ./table'
- name: Zip osx file
uses: montudor/action-zip@v1
uses: a7ul/tar-action@v1.1.0
with:
args: zip -qq -r osx.zip ./table
command: c
files: ./table
outPath: osx.tar.gz
- name: Rename linux file
run: bash -c 'rm -rf ./table && cp -r ./release-binary-ubuntu-latest/table ./table'
- name: Zip linux file
uses: montudor/action-zip@v1
uses: a7ul/tar-action@v1.1.0
with:
args: zip -qq -r linux.zip ./table
command: c
files: ./table
outPath: linux.tar.gz
- name: Create GH release
id: create_release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 2b4e224

Please sign in to comment.