From 483ff1b808f89489831ca715ffbdd9f6f8da64fe Mon Sep 17 00:00:00 2001 From: tyler Date: Tue, 19 Dec 2023 23:14:27 +0000 Subject: [PATCH] Fix startsWith() call in update-release condition --- .github/workflows/deploy-production.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index 9419a3349..08624478c 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -136,7 +136,7 @@ jobs: update-release: name: Update release runs-on: ubuntu-latest - if: startsWith('refs/tags/release/', github.ref) + if: startsWith(github.ref, 'refs/tags/release/') permissions: contents: write needs: