Fix pointer

This commit is contained in:
Adria Navarro 2023-06-06 09:11:45 +01:00
parent 1b54a028db
commit e173cd2c51
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ jobs:
- name: Fail if tag is not master
run: |
if ! git merge-base --is-ancestor ${{ github.sha }} origin/develop; then
if ! git merge-base --is-ancestor ${{ github.sha }} origin/master; then
echo "Tag is not in master. This pipeline can only execute tags that are present on the master branch"
exit 1
fi