Skip to content

Commit

Permalink
Build ticket branches in GHA.
Browse files Browse the repository at this point in the history
  • Loading branch information
ctslater committed Jun 22, 2024
1 parent dfd2d99 commit 8ed790f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-plot-navigator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8ed790f

Please sign in to comment.