We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c77e367 commit 358d4c5Copy full SHA for 358d4c5
.github/workflows/release.yml
@@ -24,7 +24,7 @@ jobs:
24
name: Release from "${{ github.ref_name }}" branch
25
runs-on: ubuntu-latest
26
# 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') }}
+ if: ${{ !inputs.docs_only && (startsWith(github.ref_name, 'release') || startsWith(github.ref_name, 'master')) }}
28
env:
29
NODE_OPTIONS: --max_old_space_size=4096
30
steps:
0 commit comments