Skip to content

Commit

Permalink
Trigger the container image builder Github action if a vX.Y.Z tag is …
Browse files Browse the repository at this point in the history
…pushed to the nephio-project/porch repo
  • Loading branch information
kispaljr committed Nov 6, 2024
1 parent 7ef9ce3 commit 911266c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/dev-image-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:
- main
tags:
- "v[0-9]+.[0-9]+.[0-9]"
- "v[0-9]+.[0-9]+.[0-9]-pre[0-9]+"
paths-ignore:
- "docs/**"
- "release/**"
Expand Down Expand Up @@ -73,7 +76,7 @@ jobs:
push: true
tags: |
${{ steps.meta.outputs.tags }}
${{ matrix.image }}:latest
${{ matrix.image }}:${{ github.ref_name == 'main' && 'latest' || github.ref_name }}
labels: ${{ steps.meta.outputs.labels }}
no-cache: true
sbom: true

0 comments on commit 911266c

Please sign in to comment.