Skip to content

Commit 358d4c5

Browse files
chore: fix condition to run release
Co-authored-by: Anton Arnautov <43254280+arnautov-anton@users.noreply.github.com>
1 parent c77e367 commit 358d4c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: Release from "${{ github.ref_name }}" branch
2525
runs-on: ubuntu-latest
2626
# GH does not allow to limit branches in the workflow_dispatch settings so this here is a safety measure
27-
if: ${{ !inputs.docs_only && startsWith(github.ref_name, 'release') || startsWith(github.ref_name, 'master') }}
27+
if: ${{ !inputs.docs_only && (startsWith(github.ref_name, 'release') || startsWith(github.ref_name, 'master')) }}
2828
env:
2929
NODE_OPTIONS: --max_old_space_size=4096
3030
steps:

0 commit comments

Comments
 (0)