From 9349a9896b974b4ee4760982b7fd6a5dc910f4fe Mon Sep 17 00:00:00 2001 From: Bart Geesink Date: Tue, 27 Feb 2024 12:43:41 +0100 Subject: [PATCH] Only create an official release when a tag is set --- .github/workflows/deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 08728db1..075f21d4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -155,6 +155,7 @@ jobs: uses: ardalanamini/auto-changelog@v3 with: default-commit-type: New Features + if: github.event_name != 'workflow_dispatch' - name: Create release uses: actions/create-release@v1 @@ -168,3 +169,4 @@ jobs: ${{ steps.changelog.outputs.changelog }} env: GITHUB_TOKEN: ${{ github.token }} + if: github.event_name != 'workflow_dispatch'