fix to prevent branches with 'release' in the name from triggering the public repo push

This commit is contained in:
Andrew Welker
2020-05-13 11:56:53 -06:00
parent b0a21a1c2f
commit f9ca609c1e

View File

@@ -187,7 +187,7 @@ jobs:
Public_Push_Output: Public_Push_Output:
needs: Build_Project needs: Build_Project
runs-on: windows-latest runs-on: windows-latest
if: contains(github.ref, 'master') || contains(github.ref, 'release') if: contains(github.ref, 'master') || contains(github.ref, '/release/')
steps: steps:
# Checkout the repo # Checkout the repo
- name: check Github ref - name: check Github ref