Skip to content

Commit c2987c4

Browse files
committed
Update workflow secrets
1 parent d1abf59 commit c2987c4

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.github/workflows/_dist.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Create and publish a Docker image
22

33
on:
44
workflow_call:
5+
secrets:
6+
GITHUB_TOKEN:
7+
required: true
58

69
env:
710
REGISTRY: ghcr.io

.github/workflows/_integration.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Integration Tests
22

33
on:
44
workflow_call:
5+
secrets:
6+
CODECOV_TOKEN:
7+
required: true
58

69
jobs:
710
test:

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)