From 866eb6f628e46a9bd2b9a5de2f9a38cb0a1f1dfa Mon Sep 17 00:00:00 2001 From: Joel Lappalainen Date: Thu, 15 Sep 2022 12:34:59 +0300 Subject: [PATCH] Modify release check so it allow tags with postfixes --- .github/workflows/prod-pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prod-pipeline.yml b/.github/workflows/prod-pipeline.yml index 13cbe54..e332e89 100644 --- a/.github/workflows/prod-pipeline.yml +++ b/.github/workflows/prod-pipeline.yml @@ -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