Skip to content

Commit

Permalink
fix(ci/code-coverage-deploy): fix non-existent steps.outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasdewally committed Oct 22, 2024
1 parent 04dc3e0 commit 5a2e695
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/code-coverage-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ jobs:
### Coverage Main & PR Coverage Change
```diff
${{ steps.coveragediff.outputs.diff }}
${{ env.diff }}
```
- name: Create coverage comment (previous lcov)
Expand Down Expand Up @@ -380,11 +380,11 @@ jobs:
### Coverage Main & PR Coverage Change
```diff
${{ steps.coveragediff.outputs.diff }}
${{ env.diff }}
```
### Previous Main Coverage Change
```diff
${{ steps.historicalcoveragediff.outputs.hist_diff }}
${{ env.hist_diff }}
```

0 comments on commit 5a2e695

Please sign in to comment.