Simplify workflow trigger for releases

Refactored the workflow trigger for releases in 'release.yaml' to directly listen to release events. The change simplifies the code and aligns with the syntax used in other parts of the workflow. It was necessary for maintaining consistency and cleanliness of the workflows codebase.
This commit is contained in:
Ian Wijma 2023-11-21 00:21:06 +11:00
parent d2f72f4ad7
commit 8e6950270e
1 changed files with 1 additions and 3 deletions

View File

@ -1,8 +1,6 @@
name: Releasing
run-name: ${{ gitea.actor }} is building a release releasing 🚀
on:
release:
types: [created]
on: [release]
jobs:
release: