From 55f1298807e2a58b3954975fe94703177fd3b288 Mon Sep 17 00:00:00 2001 From: Miguel Angel Moreno Date: Mon, 1 Jul 2024 10:33:46 +0200 Subject: [PATCH] Fix regex --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51707de..b50d683 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: uses: actions/github-script@v7 with: script: | - const regex = '/(alpha|beta)/' + const regex = /(alpha|beta)/ // FIXME: // const refName = context.ref.replace('refs/tags/', '') const refName = 'v0.0.1-alpha.0'