Skip to content

Commit

Permalink
ci(standalone-builds): Make a tarball for Linux standalone releases
Browse files Browse the repository at this point in the history
  • Loading branch information
flozz committed Apr 17, 2024
1 parent 24e24a2 commit 7f2612e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/standalone-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,13 @@ jobs:
run: |
linux-bin/build.sh
- name: Archive Windows Build
- name: "Make the release tarball"
run: |
mv yoga-bin.dist yoga-v$(python setup.py --version)_linux_standalone_x86-64
tar -cvzf yoga-v$(python setup.py --version)_linux_standalone_x86-64.tar.gz yoga-v$(python setup.py --version)_linux_standalone_x86-64
- name: "Upload Linux tarball"
uses: actions/upload-artifact@v4
with:
name: yoga-vX.X.X_linux_standalone_x86-64
path: yoga-bin.dist
path: "yoga-*.tar.gz"

0 comments on commit 7f2612e

Please sign in to comment.