From dd3c253c6e8e504448a5a63939b253cd105c0ac9 Mon Sep 17 00:00:00 2001 From: Evan Sosenko Date: Wed, 17 Apr 2024 23:30:51 -0700 Subject: [PATCH] Prevent semantic-release from releasing version 1.0.0 --- .github/workflows/semantic-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/semantic-release.yml b/.github/workflows/semantic-release.yml index f083565..a62d2ea 100644 --- a/.github/workflows/semantic-release.yml +++ b/.github/workflows/semantic-release.yml @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 needs: semantic - if: ${{ needs.semantic.outputs.new_release_published == 'true' }} + if: needs.semantic.outputs.new_release_published == 'true' && needs.semantic.outputs.new_release_version != '1.0.0' steps: - name: Checkout uses: actions/checkout@v4