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:
parent
d2f72f4ad7
commit
8e6950270e
|
@ -1,8 +1,6 @@
|
|||
name: Releasing
|
||||
run-name: ${{ gitea.actor }} is building a release releasing 🚀
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
on: [release]
|
||||
|
||||
jobs:
|
||||
release:
|
||||
|
|
Loading…
Reference in New Issue