We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63ae4e9 commit 12fd80cCopy full SHA for 12fd80c
.github/workflows/codecov.yml
@@ -49,9 +49,9 @@ jobs:
49
if [ $(git branch --show-current) != $BRANCH ]; then PR=$(gh pr view $BRANCH --json number -q .number); fi
50
echo uploading $BRANCH
51
SHA=${{ github.event.workflow_run.head_sha }}
52
- VARARGS="-n github"
53
- # if a PR, pass proper information to codecov-cli about SHA, PR number
54
- if [ -n "${PR}" ]; then VARARGS="${VARARGS}-${PR}-${SHA} -P ${PR} -C ${SHA}"; fi
+ VARARGS="-C ${SHA} -n github-${SHA}"
+ # if a PR, pass proper information to codecov-cli about the PR number
+ if [ -n "${PR}" ]; then VARARGS="${VARARGS}-${PR} -P ${PR}"; fi
55
./codecov -v upload-process -Z -t ${{ secrets.CODECOV_TOKEN }} $VARARGS -F github -s ./coverage
56
env:
57
GH_TOKEN: ${{ github.token }}
0 commit comments