From f1f753f7c2f2a93633ca90a0e747a87eac40c284 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Wed, 18 Mar 2026 00:08:10 +0900 Subject: [PATCH] Only run deploy actions for tags without suffixes Suffixed tags are build releases, which are triggered manually for now (via private project). Tags without suffix are the ones that we want to build the nuget packages and such. --- .github/workflows/deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1a921b21ae..75408d2e8c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -3,7 +3,8 @@ name: Pack and nuget on: push: tags: - - '*' + - '*.*.*' + - '!*-*' jobs: notify_pending_production_deploy: