From ffa6d18e5e7e48f54b135f2a1802f7fa522cc471 Mon Sep 17 00:00:00 2001 From: Ian Wijma Date: Tue, 21 Nov 2023 01:10:07 +1100 Subject: [PATCH] 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. --- .github/workflows/release.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 17f1eb8..5ca8597 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,6 +1,8 @@ name: Releasing run-name: ${{ github.actor }} is building a release releasing 🚀 -on: [release] +on: + release: + types: [created] jobs: release: