From 9855abbe5500d6f5d983dd6b2d3945bbefa2a1c9 Mon Sep 17 00:00:00 2001 From: ivmartel Date: Mon, 25 Nov 2024 12:42:28 +0100 Subject: [PATCH] Avoid beta tags for stable build --- .github/workflows/nodejs-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nodejs-ci.yml b/.github/workflows/nodejs-ci.yml index 94d9f341..3a0204ca 100644 --- a/.github/workflows/nodejs-ci.yml +++ b/.github/workflows/nodejs-ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest env: IS_PUSH_MAIN: ${{ github.ref == 'refs/heads/main' }} - IS_PUSH_TAG: ${{ startsWith(github.ref, 'refs/tags/') }} + IS_PUSH_TAG: ${{ startsWith(github.ref, 'refs/tags/') && !contains(github.ref, 'beta') }} steps: - name: Check out code uses: actions/checkout@v4