We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ed5ad6 commit 5326786Copy full SHA for 5326786
.github/workflows/release.yml
@@ -30,13 +30,15 @@ jobs:
30
echo "tag=${{ github.event.inputs.tag }}" >> $GITHUB_OUTPUT
31
fi
32
33
- - name: Wait for build to complete
34
- uses: lewagon/wait-on-check-action@v1.3.1
+ - name: Wait for build workflow to complete
+ uses: fountainhead/action-wait-for-check@v1.1.0
35
+ id: wait-for-build
36
with:
37
+ token: ${{ secrets.GITHUB_TOKEN }}
38
+ checkName: build
39
ref: ${{ steps.tag.outputs.tag }}
- check-name: "Build" # check for successful build on all OS/archs
- repo-token: ${{ secrets.GITHUB_TOKEN }}
- wait-interval: 10
40
+ timeoutSeconds: 600
41
+ intervalSeconds: 10
42
43
- name: Download build artifacts
44
uses: dawidd6/action-download-artifact@v3
0 commit comments