Skip to content

Commit

Permalink
Add tar to release process
Browse files Browse the repository at this point in the history
  • Loading branch information
scallyw4g committed Feb 2, 2024
1 parent b51d801 commit 76ee2e5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,15 @@ jobs:
run: sudo apt update && sudo apt install freeglut3-dev libx11-dev clang-15
- name: Build
run: ./make.sh
- name: Tar
if: startsWith(github.ref, 'refs/tags/')
run: tar -cz bin/* > linux_release.tar.gz
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
bin/*
linux_release.tar.gz
LICENSE
CHANGELOG.txt
Expand Down

0 comments on commit 76ee2e5

Please sign in to comment.