diff --git a/.github/workflows/build-plot-navigator.yaml b/.github/workflows/build-plot-navigator.yaml index 738f79b..936ca04 100644 --- a/.github/workflows/build-plot-navigator.yaml +++ b/.github/workflows/build-plot-navigator.yaml @@ -4,18 +4,22 @@ on: push: tags: - "*" + branches: + - "tickets/**" + jobs: docker: runs-on: ubuntu-latest if: > - startsWith(github.ref, 'refs/tags/') + startsWith(github.ref, 'refs/tags/') || + startsWith(github.ref, 'refs/heads/tickets/') steps: - name: Get tag name - run: echo "IMG_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV + run: echo "IMG_TAG=${GITHUB_REF##(refs/*/|refs/heads/tickets/)}" >> $GITHUB_ENV - name: Set up QEMU