diff options
author | txtsd <thexerothermicsclerodermoid@gmail.com> | 2022-02-15 14:38:26 +0530 |
---|---|---|
committer | txtsd <thexerothermicsclerodermoid@gmail.com> | 2022-02-15 14:38:26 +0530 |
commit | e24a183dadb891bab633b9af3e7474a38c3b49d8 (patch) | |
tree | 03e622222cfcee41cd3f30c5a01209bf90294c93 /.github/workflows/trigger_builds.yml | |
parent | 8596753a639f5388d8f0ba1cfea2849f6416f42c (diff) | |
download | PrismLauncher-e24a183dadb891bab633b9af3e7474a38c3b49d8.tar.gz PrismLauncher-e24a183dadb891bab633b9af3e7474a38c3b49d8.tar.bz2 PrismLauncher-e24a183dadb891bab633b9af3e7474a38c3b49d8.zip |
Only trigger GH Release on stable branch
Diffstat (limited to '.github/workflows/trigger_builds.yml')
-rw-r--r-- | .github/workflows/trigger_builds.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/trigger_builds.yml b/.github/workflows/trigger_builds.yml index e50405e6..7299ef1a 100644 --- a/.github/workflows/trigger_builds.yml +++ b/.github/workflows/trigger_builds.yml @@ -18,7 +18,7 @@ jobs: build_type: Release create_release: - if: startsWith(github.ref, 'refs/tags/') + if: contains(github.base_ref, 'refs/heads/stable') && startsWith(github.ref, 'refs/tags/') needs: build_release runs-on: ubuntu-latest outputs: |