Skip to content

Commit 34d1590

Browse files
authored
GitHub Workflow fix (#588)
1 parent 7968154 commit 34d1590

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
run: ls -lah $GITHUB_WORKSPACE
105105

106106
- name: Update Release Linux
107-
if: github.repository == 'openframeworks/apothecary' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding')
107+
if: github.repository == 'openframeworks/projectGenerator' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding')
108108
uses: softprops/action-gh-release@v2.0.8
109109
with:
110110
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/build-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
- name: Test cmdline
128128
run: ../openFrameworks/apps/projectGenerator/scripts/osx/test_cmdline.sh
129129
- name: Update Release macOS
130-
if: github.repository == 'openframeworks/apothecary' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding')
130+
if: github.repository == 'openframeworks/projectGenerator' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding')
131131
uses: softprops/action-gh-release@v2.0.8
132132
with:
133133
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/build-vs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,15 +97,15 @@ jobs:
9797
../openFrameworks/apps/projectGenerator/scripts/vs/ci_frontend_package.sh
9898

9999
- name: Update Release CMD
100-
if: github.repository == 'openframeworks/apothecary' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding')
100+
if: github.repository == 'openframeworks/projectGenerator' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding')
101101
uses: softprops/action-gh-release@v2.0.8
102102
with:
103103
token: ${{ secrets.GITHUB_TOKEN }}
104104
tag_name: ${{ env.RELEASE }}
105105
release: ${{ env.RELEASE }}
106106
files: ../openFrameworks/apps/projectGenerator/commandLine/bin/projectGenerator-vs.zip
107107
- name: Update Release GUI
108-
if: github.repository == 'openframeworks/apothecary' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding')
108+
if: github.repository == 'openframeworks/projectGenerator' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding')
109109
uses: softprops/action-gh-release@v2.0.8
110110
with:
111111
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)