From: gggeek Date: Sat, 7 Jan 2023 18:41:58 +0000 (+0000) Subject: trigger the CD workflow on tags X-Git-Tag: 4.9.4~2 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=5c5885adc1a5595ed8677ec8942fd7b2cd52a896;p=plcapi.git trigger the CD workflow on tags --- 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...