From fe6cf6a47907ec4a6de253b10cb7560962b07423 Mon Sep 17 00:00:00 2001 From: Chuck Adams Date: Sat, 14 Dec 2024 09:18:13 -0700 Subject: [PATCH] chore: trigger on any pushed tag --- .github/workflows/build-container-images.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-container-images.yaml b/.github/workflows/build-container-images.yaml index 9d25b0af..a4678bf7 100644 --- a/.github/workflows/build-container-images.yaml +++ b/.github/workflows/build-container-images.yaml @@ -2,8 +2,10 @@ name: Build container images on: - release: - types: ['published'] + push: + tags: ['*'] +# release: +# types: ['published'] env: REGISTRY: ghcr.io