Skip to content

Commit 6db1628

Browse files
authored
GitHub Actions Fix Linux (#589)
1 parent 34d1590 commit 6db1628

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/build-linux.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,5 +109,12 @@ jobs:
109109
with:
110110
token: ${{ secrets.GITHUB_TOKEN }}
111111
tag_name: ${{ env.RELEASE }}
112-
release: ${{ env.RELEASE }}
113-
files: projectGenerator-linux-gui.gz projectGenerator-linux.tar.bz2
112+
files: projectGenerator-linux.tar.bz2
113+
114+
- name: Update Release Linux gui
115+
if: github.repository == 'openframeworks/projectGenerator' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding')
116+
uses: softprops/action-gh-release@v2.0.8
117+
with:
118+
token: ${{ secrets.GITHUB_TOKEN }}
119+
tag_name: ${{ env.RELEASE }}
120+
files: projectGenerator-linux-gui.gz

.github/workflows/build-macos.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,5 +132,4 @@ jobs:
132132
with:
133133
token: ${{ secrets.GITHUB_TOKEN }}
134134
tag_name: ${{ env.RELEASE }}
135-
release: ${{ env.RELEASE }}
136135
files: projectGenerator-osx.zip

.github/workflows/build-vs.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,11 @@ jobs:
102102
with:
103103
token: ${{ secrets.GITHUB_TOKEN }}
104104
tag_name: ${{ env.RELEASE }}
105-
release: ${{ env.RELEASE }}
106105
files: ../openFrameworks/apps/projectGenerator/commandLine/bin/projectGenerator-vs.zip
107106
- name: Update Release GUI
108107
if: github.repository == 'openframeworks/projectGenerator' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding')
109108
uses: softprops/action-gh-release@v2.0.8
110109
with:
111110
token: ${{ secrets.GITHUB_TOKEN }}
112111
tag_name: ${{ env.RELEASE }}
113-
release: ${{ env.RELEASE }}
114112
files: ../openFrameworks/apps/projectGenerator/frontend/dist/projectGenerator-vs-gui.zip

0 commit comments

Comments
 (0)