We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eb9898 commit 64989abCopy full SHA for 64989ab
.github/workflows/ci.yml
@@ -3,6 +3,7 @@ name: ci
3
on:
4
push:
5
branches: [main]
6
+ tags: ['v*']
7
pull_request:
8
9
.github/workflows/release.yml
@@ -3,14 +3,27 @@ name: release
permissions:
id-token: write
contents: write
+ actions: read
10
tags:
11
- 'v*'
12
13
jobs:
14
+ wait-for-ci:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Wait for CI to complete
18
+ uses: lewagon/wait-on-check-action@v1.3.4
19
+ with:
20
+ ref: ${{ github.sha }}
21
+ check-name: ci
22
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
23
+ wait-interval: 10
24
+
25
release:
26
+ needs: wait-for-ci
27
runs-on: ubuntu-latest
28
steps:
29
- uses: actions/checkout@v4
0 commit comments