Skip to content

Commit

Permalink
Release action: replace create with push
Browse files Browse the repository at this point in the history
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
  • Loading branch information
bastelfreak committed Jul 3, 2024
1 parent 4e2ed25 commit dfde288
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Release

on:
create:
push:
tags:
- v*
- 'v*'

jobs:
release:
Expand Down

0 comments on commit dfde288

Please sign in to comment.