From 5c5885adc1a5595ed8677ec8942fd7b2cd52a896 Mon Sep 17 00:00:00 2001 From: gggeek Date: Sat, 7 Jan 2023 18:41:58 +0000 Subject: [PATCH] trigger the CD workflow on tags --- .github/workflows/cd.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml index a1ae7614..e1ce8587 100644 --- a/.github/workflows/cd.yaml +++ b/.github/workflows/cd.yaml @@ -1,10 +1,12 @@ name: CD on: - # we limit this workflow to pushes to master. No need to run on prs + # we limit this workflow to pushes to master and to tags. No need to run on prs push: branches: - master + tags: + - '**' jobs: # we could try to split in 2 jobs: one for docs and one for release, but the release one needs the asset from the docs one... -- 2.47.0