From ef043156385d860c4a0252a386ae818d58970fe2 Mon Sep 17 00:00:00 2001 From: Matthew Sevey Date: Tue, 18 Oct 2022 13:01:28 -0400 Subject: [PATCH] .github: add triggering on versioned tags (#1237) Small update to include running the CI on versioned tags, i.e. any tag starting with a `v`. This allows for tagging release candidates manually. --- .github/workflows/ci_release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci_release.yml b/.github/workflows/ci_release.yml index 110ab42cc8..b18f9bc4aa 100644 --- a/.github/workflows/ci_release.yml +++ b/.github/workflows/ci_release.yml @@ -3,6 +3,9 @@ on: push: branches: - main + # Trigger on version tags + tags: + - "v*" pull_request: workflow_dispatch: # Inputs the workflow accepts.