File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed
Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -208,6 +208,20 @@ jobs:
208208 tag : ${{ env.PKG_VERSION }}
209209 writeToFile : false
210210
211+ - name : Process Coverage Stats + Chart
212+ id : covprocess
213+ uses : ./dev/coverage-action/
214+ if : ${{ github.event.inputs.skiptests == 'false' }}
215+ with :
216+ token : ${{ github.token }}
217+ tokenCommon : ${{ secrets.GH_COMMON_TOKEN }}
218+ repoCommon : common
219+ version : ${{needs.prepare.outputs.pkg_version}}
220+ changelog : ${{ steps.changelog.outputs.changes }}
221+ summary : ${{ github.event.inputs.summary }}
222+ coverageResultsPath : coverage.json
223+ histCoveragePath : historical-coverage.json
224+
211225 - name : Create Release
212226 uses : ncipollo/release-action@v1
213227 if : env.SHOULD_DEPLOY == 'true'
@@ -216,7 +230,7 @@ jobs:
216230 draft : false
217231 tag : ${{ env.PKG_VERSION }}
218232 name : ${{ env.PKG_VERSION }}
219- body : ${{ steps.changelog .outputs.changes }}
233+ body : ${{ steps.covprocess .outputs.changelog }}
220234 artifacts : " /home/runner/work/release/release.tar.gz,coverage.json"
221235 token : ${{ secrets.GITHUB_TOKEN }}
222236
You can’t perform that action at this time.
0 commit comments