From dfde288a95da4364f2e9ae8137b5b36845d77d6c Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Wed, 3 Jul 2024 21:37:15 +0200 Subject: [PATCH] Release action: replace create with push I remember Vox Pupuli had some issues with `on: create`. I didn't find that in the docs: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions And Vox Pupuli doesn't use it anymore. This might fix our odd CI runs for the release action triggered by dependabot: https://github.com/Libera-Chat/curite/actions/runs/9781239498 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cff198b..6ce9c7d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,9 +1,9 @@ name: Release on: - create: + push: tags: - - v* + - 'v*' jobs: release: