From 1eb44598e4a64f8234228818926ee0c9cd9f4283 Mon Sep 17 00:00:00 2001 From: Jay Qi Date: Sat, 30 Mar 2024 20:38:46 -0400 Subject: [PATCH] Fix conditional syntax --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0808230..d458daf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -71,7 +71,7 @@ jobs: --title="${{ steps.version.outputs.major_minor_version }}rc" - name: Stage docs on gh-pages (stable) - if: ! contains(steps.version.outputs.full_version, 'rc') + if: ${{ ! contains(steps.version.outputs.full_version, 'rc') }} working-directory: docs run: | git fetch origin gh-pages --depth=1