From 228f4338c5de698fb21f6b3a8d2e8eef9113a524 Mon Sep 17 00:00:00 2001 From: Adam Novak Date: Wed, 26 Oct 2022 22:45:59 -0400 Subject: [PATCH] Change tag trigger --- .github/workflows/release-automation.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-automation.yml b/.github/workflows/release-automation.yml index 4218e517c..fe113a260 100644 --- a/.github/workflows/release-automation.yml +++ b/.github/workflows/release-automation.yml @@ -2,11 +2,13 @@ name: Release Automation on: push: tags: - - 'iceraven-*' + - '*' + create: jobs: release-automation: name: Create Release runs-on: ubuntu-latest + if: "contains(toJSON(github.event.ref_type), 'tag') && contains(toJSON(github.event.ref), 'iceraven')" steps: - name: Checkout repository uses: actions/checkout@v2