From c15b88e63db1a9af1d5ac9df973c6a3e975a3e73 Mon Sep 17 00:00:00 2001 From: John Watson Date: Tue, 20 Aug 2024 16:11:21 +0100 Subject: [PATCH] fix: be more direct in tag filtering for deploying on main --- .github/workflows/deploy-on-main.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-on-main.yml b/.github/workflows/deploy-on-main.yml index af63cabcd8..a1a506f1da 100644 --- a/.github/workflows/deploy-on-main.yml +++ b/.github/workflows/deploy-on-main.yml @@ -1,7 +1,12 @@ on: push: tags: - - '.*(sdf|rebaser|pinga|web|veritech).*' + # These fairly explicitly directly matches the tags we push [examples] + - 'bin/sdf/image/*' # bin/sdf/image/20240820.143323.0-sha.982dd5a81 + - 'bin/rebaser/image/*' # bin/rebaser/image/20240820.143323.0-sha.982dd5a81 + - 'bin/pinga/image/*' # bin/pinga/image/20240820.143323.0-sha.982dd5a81 + - 'bin/veritech/image/*' # bin/veritech/image/20240820.031721.0-sha.efea02a6a + - 'app/web/image/*' # app/web/image/20240820.000535.0-sha.13e826961 jobs: parse-tag: