Skip to content

Commit

Permalink
build: fix typo and add back create commit and report
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-sentry authored Mar 7, 2024
1 parent f784431 commit 4710bd9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,14 @@ jobs:
run: |
pip install codecov-cli
- name: Create commit in codecov
run: |
codecovcli create-commit -t ${{ secrets.CODECOV_TOKEN }} --git-service github
- name: Create commit in codecov (staging)
run: |
codecovcli --enterprise-url=${{ secrets.CODECOV_STAGING_URL }} create-commit -t ${{ secrets.CODECOV_ORG_TOKEN_STAGING }} --git-service github
- name: Create commit report in codecov
run: |
codecovcli create-report -t ${{ secrets.CODECOV_TOKEN }} --git-service github
- name: Create commit report in codecov
run: |
codecovcli --enterprise-url=${{ secrets.CODECOV_STAGING_URL }} create-report -t ${{ secrets.CODECOV_ORG_TOKEN_STAGING }} --git-service github
Expand Down Expand Up @@ -92,8 +98,7 @@ jobs:
- name: Dogfood test results (staging)
if: ${{ !cancelled() && !github.event.pull_request.head.repo.fork && github.repository_owner == 'codecov' }}
run: |
codecovcli --enterprise-url=${{ secrets.CODECOV_STAGING_URL }} do-upload --report-type test_results--fail-on-error -t ${{ secrets.CODECOV_ORG_TOKEN_STAGING }} --flag python${{matrix.python-version}}
codecovcli --enterprise-url=${{ secrets.CODECOV_STAGING_URL }} do-upload --report-type test_results --fail-on-error -t ${{ secrets.CODECOV_ORG_TOKEN_STAGING }} --flag python${{matrix.python-version}}
static-analysis:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 4710bd9

Please sign in to comment.