From 72e0c6a8aaec5b78c4579499997b58064c9e23cf 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 2450655a..b29dd1bc 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -153,6 +153,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 @@ -166,3 +167,4 @@ jobs: ${{ steps.changelog.outputs.changelog }} env: GITHUB_TOKEN: ${{ github.token }} + if: github.event_name != 'workflow_dispatch'