From f76fc6d9b36a49f3d5c7ff8b933d2fb847b89b41 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 700d9290..18f27db2 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'