Run tag only on develop
This commit is contained in:
parent
f52fc90dbc
commit
410046cae2
|
@ -5,7 +5,6 @@ on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- develop
|
- develop
|
||||||
- chore/pipeline_npm_version_updates
|
|
||||||
paths:
|
paths:
|
||||||
- ".aws/**"
|
- ".aws/**"
|
||||||
- ".github/**"
|
- ".github/**"
|
||||||
|
@ -21,11 +20,11 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
# - name: Fail if branch is not develop
|
- name: Fail if branch is not develop
|
||||||
# if: github.ref != 'refs/heads/develop'
|
if: github.ref != 'refs/heads/develop'
|
||||||
# run: |
|
run: |
|
||||||
# echo "Ref is not develop, you must run this job from develop."
|
echo "Ref is not develop, you must run this job from develop."
|
||||||
# exit 1
|
exit 1
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
|
|
Loading…
Reference in New Issue