Skip to content

Commit

Permalink
GitHub Actions Fix Linux (#589)
Browse files Browse the repository at this point in the history
  • Loading branch information
danoli3 authored Nov 5, 2024
1 parent 34d1590 commit 6db1628
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,5 +109,12 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: ${{ env.RELEASE }}
release: ${{ env.RELEASE }}
files: projectGenerator-linux-gui.gz projectGenerator-linux.tar.bz2
files: projectGenerator-linux.tar.bz2

- name: Update Release Linux gui
if: github.repository == 'openframeworks/projectGenerator' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding')
uses: softprops/action-gh-release@v2.0.8
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: ${{ env.RELEASE }}
files: projectGenerator-linux-gui.gz
1 change: 0 additions & 1 deletion .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,5 +132,4 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: ${{ env.RELEASE }}
release: ${{ env.RELEASE }}
files: projectGenerator-osx.zip
2 changes: 0 additions & 2 deletions .github/workflows/build-vs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,11 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: ${{ env.RELEASE }}
release: ${{ env.RELEASE }}
files: ../openFrameworks/apps/projectGenerator/commandLine/bin/projectGenerator-vs.zip
- name: Update Release GUI
if: github.repository == 'openframeworks/projectGenerator' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding')
uses: softprops/action-gh-release@v2.0.8
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: ${{ env.RELEASE }}
release: ${{ env.RELEASE }}
files: ../openFrameworks/apps/projectGenerator/frontend/dist/projectGenerator-vs-gui.zip

0 comments on commit 6db1628

Please sign in to comment.