From e254100a726d4aea6e57e3a5718853c84d07767b Mon Sep 17 00:00:00 2001 From: "Harrison (Harry) Cramer" <32515581+harrisoncramer@users.noreply.github.com> Date: Sat, 16 Dec 2023 17:20:38 -0500 Subject: [PATCH] Fix: Enable No-Pipeline Fixes (#145) This will let us skip releases with the NONE keyword (no tags, no release) for small things like README tweaks or pipeline changes. --- .github/workflows/tag-and-release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tag-and-release.yaml b/.github/workflows/tag-and-release.yaml index 9b90269..131498d 100644 --- a/.github/workflows/tag-and-release.yaml +++ b/.github/workflows/tag-and-release.yaml @@ -40,3 +40,4 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} tag: ${{ needs.tag.outputs.tag }} body: ${{ github.event.head_commit.message }} + skipIfReleaseExists: true # Do not release if NONE tag is used above