File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed
Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ name: Create and publish a Docker image
22
33on :
44 workflow_call :
5+ secrets :
6+ GITHUB_TOKEN :
7+ required : true
58
69env :
710 REGISTRY : ghcr.io
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ name: Integration Tests
22
33on :
44 workflow_call :
5+ secrets :
6+ CODECOV_TOKEN :
7+ required : true
58
69jobs :
710 test :
Original file line number Diff line number Diff line change @@ -19,10 +19,14 @@ jobs:
1919 needs : check
2020 if : needs.check.outputs.branch-pr == ''
2121 uses : ./.github/workflows/_integration.yml
22+ secrets :
23+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
2224
2325 release :
2426 if : github.ref_type == 'tag'
2527 needs : test
2628 uses : ./.github/workflows/_dist.yml
2729 permissions :
2830 contents : write
31+ secrets :
32+ CODECOV_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments