We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 008327d commit dc302ebCopy full SHA for dc302eb
1 file changed
.github/workflows/ci.yml
@@ -9,9 +9,6 @@ on:
9
- '*'
10
env:
11
FORCE_COLOR: 1
12
-concurrency:
13
- group: ${{ github.head_ref || github.run_id }}
14
- cancel-in-progress: true
15
jobs:
16
verify-version:
17
if: startsWith(github.ref, 'refs/tags/')
@@ -41,6 +38,7 @@ jobs:
41
38
echo "Version match verified!"
42
39
43
40
build:
+ needs: [verify-version]
44
runs-on: ${{ matrix.os }}
45
strategy:
46
fail-fast: false
@@ -152,6 +150,7 @@ jobs:
152
150
if: matrix.node == 24 && startsWith(github.ref, 'refs/tags/')
153
151
154
build-musl:
155
if: github.event_name == 'workflow_dispatch' || startsWith(github.ref, 'refs/tags/')
156
157
0 commit comments