From 05633d3c19ef233b558d8410bbf5c6905169c7e4 Mon Sep 17 00:00:00 2001 From: Johannes Kleinlercher Date: Thu, 2 Jan 2025 00:22:39 +0100 Subject: [PATCH] fix: correct release-please optional condition --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f20cbce8d..f1c15b6a2 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -12,7 +12,7 @@ name: release-please jobs: release-please: runs-on: ubuntu-latest - if: ${{ vars.RELEASE_PLEASE != 'true' }} + if: ${{ vars.RELEASE_PLEASE == 'true' }} steps: - uses: googleapis/release-please-action@v4 with: