From 76f653ae72db351276eaa704649946ff874eb402 Mon Sep 17 00:00:00 2001 From: Adam Novak Date: Wed, 26 Oct 2022 22:36:46 -0400 Subject: [PATCH] Make release workflow run on pushed tags instead --- .github/workflows/release-automation.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-automation.yml b/.github/workflows/release-automation.yml index 699325809..4218e517c 100644 --- a/.github/workflows/release-automation.yml +++ b/.github/workflows/release-automation.yml @@ -1,11 +1,12 @@ name: Release Automation on: - create: + push: + tags: + - 'iceraven-*' 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