We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba9e23c commit 49f0278Copy full SHA for 49f0278
1 file changed
.github/workflows/release.yml
@@ -7,8 +7,21 @@ on:
7
- v*.*.*
8
9
jobs:
10
+ wait-for-ci:
11
+ name: Wait for CI
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Wait for CI to pass
15
+ uses: lewagon/wait-on-check-action@v1.5.0
16
+ with:
17
+ ref: ${{ github.sha }}
18
+ running-workflow-name: Wait for CI
19
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
20
+ wait-interval: 10
21
+
22
publish:
23
name: Publish Client
24
+ needs: wait-for-ci
25
runs-on: ubuntu-latest
26
steps:
27
- uses: actions/checkout@v6
0 commit comments