From 26bd63c946a14e672e537f8c76a6fc20b8f5e38b Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 29 Nov 2021 23:52:01 +0200 Subject: [PATCH] fix CI/CD tag workflow (#98) --- .github/workflows/tag.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/tag.yaml b/.github/workflows/tag.yaml index 5649ce0..66c8c5a 100644 --- a/.github/workflows/tag.yaml +++ b/.github/workflows/tag.yaml @@ -2,12 +2,11 @@ name: Build and push new image version on: create: - tags: - - v* jobs: build_push: name: Build and Push + if: ${{ startsWith(github.ref, 'refs/tags/v') }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v2