From 7f99e96e8551a89ef145649bdfe92c84701e06d0 Mon Sep 17 00:00:00 2001 From: Dan Rosser Date: Tue, 5 Nov 2024 15:05:50 +1100 Subject: [PATCH] GitHub Workflow fix --- .github/workflows/build-linux.yml | 2 +- .github/workflows/build-macos.yml | 2 +- .github/workflows/build-vs.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index d4b97c37..307aa43d 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -104,7 +104,7 @@ jobs: run: ls -lah $GITHUB_WORKSPACE - name: Update Release Linux - if: github.repository == 'openframeworks/apothecary' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding') + 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 }} diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 68119de6..a964b050 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -127,7 +127,7 @@ jobs: - name: Test cmdline run: ../openFrameworks/apps/projectGenerator/scripts/osx/test_cmdline.sh - name: Update Release macOS - if: github.repository == 'openframeworks/apothecary' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding') + 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 }} diff --git a/.github/workflows/build-vs.yml b/.github/workflows/build-vs.yml index 5ed4634b..5dcf626b 100644 --- a/.github/workflows/build-vs.yml +++ b/.github/workflows/build-vs.yml @@ -97,7 +97,7 @@ jobs: ../openFrameworks/apps/projectGenerator/scripts/vs/ci_frontend_package.sh - name: Update Release CMD - if: github.repository == 'openframeworks/apothecary' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding') + 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 }} @@ -105,7 +105,7 @@ jobs: release: ${{ env.RELEASE }} files: ../openFrameworks/apps/projectGenerator/commandLine/bin/projectGenerator-vs.zip - name: Update Release GUI - if: github.repository == 'openframeworks/apothecary' && github.event_name == 'push' && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master' || github.ref == 'refs/heads/bleeding') + 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 }}