Update GitHub CI action trigger in release.yaml

Changed the event trigger of the GitHub Actions workflow "release.yaml" from a generic 'release' event to specifically when a 'release' is 'created'. This provides the detailed triggering condition for the workflow, ensuring it only runs when needed, improving workflow optimization.
This commit is contained in:
Ian Wijma 2023-11-21 01:10:07 +11:00
parent 049a75e300
commit ffa6d18e5e
1 changed files with 3 additions and 1 deletions

View File

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