We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 78276de + 60c8ecf commit b21e3d2Copy full SHA for b21e3d2
1 file changed
.github/actions/lint-test-yarn/action.yml
@@ -108,7 +108,8 @@ runs:
108
- name: Get the coverage file.
109
if: inputs.should-run-tests == 'yes' && inputs.upload-coverage == 'yes'
110
run: |
111
- coverage_branch=${${{ steps.branch.outputs.branch }}//[\":<>|*?\\\/]/-}
+ branch=${{ steps.branch.outputs.branch }}
112
+ coverage_branch=${branch//[\":<>|*?\\\/]/-}
113
coverage_dir=coverage-${coverage_branch}
114
mkdir -p ${coverage_dir} && sudo cp -r coverage ${coverage_dir}
115
0 commit comments