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