Skip to content

Commit

Permalink
Fix pipeline for codecov secret
Browse files Browse the repository at this point in the history
  • Loading branch information
ilijaNL committed Jul 22, 2024
1 parent e73754c commit 6d2ba8c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: integration

on:
workflow_call:
secrets:
CODECOV_TOKEN:
required: true

pull_request:
branches:
- "main"
Expand Down Expand Up @@ -56,5 +60,4 @@ jobs:
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 2 additions & 0 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
test:
uses: ./.github/workflows/ci.yml
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
release:
name: Release
needs: test
Expand Down

0 comments on commit 6d2ba8c

Please sign in to comment.