File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 62
62
docker-compose exec shared codecovcli -v upload-process --flag shared-docker-uploader --file tests/unit.coverage.xml --token ${{ secrets.CODECOV_ORG_TOKEN }} --fail-on-error
63
63
docker-compose exec shared codecovcli -v do-upload --report-type "test_results" --flag shared-docker-uploader --file tests/unit.junit.xml --token ${{ secrets.CODECOV_ORG_TOKEN }} --fail-on-error
64
64
65
+ - name : upload using action
66
+ uses : codecov/codecov-action@v5
67
+ if : ${{ !cancelled() && !github.event.pull_request.head.repo.fork && github.repository_owner == 'codecov' }}
68
+ with :
69
+ verbose : true
70
+ flag : shared-docker-uploader-action
71
+ file : tests/unit.coverage.xml
72
+ token : ${{ secrets.CODECOV_ORG_TOKEN }}
73
+ fail-on-error : true
74
+
65
75
- name : upload using codecovcli staging
66
76
if : ${{ !cancelled() && !github.event.pull_request.head.repo.fork && github.repository_owner == 'codecov' }}
67
77
run : |
You can’t perform that action at this time.
0 commit comments