We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6f025d commit 7eef921Copy full SHA for 7eef921
1 file changed
.github/workflows/release.yaml
@@ -10,6 +10,8 @@ on: [push]
10
jobs:
11
commit_checks:
12
uses: ./.github/workflows/commit.yaml
13
+ secrets: # https://stackoverflow.com/questions/78298827/why-is-codecov-upload-step-in-github-actions-not-finding-the-token
14
+ codecov_token: ${{ secrets.CODECOV_TOKEN }}
15
build_docs:
16
# https://github.com/orgs/community/discussions/26238
17
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
@@ -47,7 +49,7 @@ jobs:
47
49
48
50
deploy_docs:
51
- needs: [build_docs, commit_checks]
52
+ needs: build_docs
53
runs-on: ubuntu-latest
54
environment:
55
name: github-pages
0 commit comments