1
0
Fork 0
mirror of synced 2024-09-29 16:51:33 +13:00

Check type instead of reference

This commit is contained in:
Adria Navarro 2023-06-06 09:04:39 +01:00
parent 59eb02a7fb
commit 1b54a028db

View file

@ -28,12 +28,13 @@ jobs:
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
fetch-depth: 0
- name: Fail if branch is not master
if: github.ref != 'refs/heads/master'
- name: Fail if tag is not master
run: |
echo "Ref is not master, you must run this job from master."
// Change to "exit 1" when merged. Left to 0 to not fail all the pipelines and not to cause noise
exit 0
if ! git merge-base --is-ancestor ${{ github.sha }} origin/develop; then
echo "Tag is not in master. This pipeline can only execute tags that are present on the master branch"
exit 1
fi
- uses: actions/setup-node@v1
with: