Skip to content

Commit

Permalink
Modify release check so it allow tags with postfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
optionsome committed Sep 15, 2022
1 parent be2ba6f commit 866eb6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/prod-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Check Tag
id: check-tag
run: |
if [[ ${GITHUB_REF##*/} =~ ^202[0-9][0-1][0-9][0-3][0-9]$ ]]; then
if [[ ${GITHUB_REF##*/} =~ ^202[0-9][0-1][0-9][0-3][0-9] ]]; then
echo ::set-output name=match::true
fi
- name: Push latest image as prod
Expand Down

0 comments on commit 866eb6f

Please sign in to comment.