mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-07 19:47:25 +00:00
fixL use the correct source (#1642)
* fixL use the correct source * fix: use github action path * fix: bonus slash * fix: use GITHUB_ACTION_PATH * fix: slashy * Update action.yml
This commit is contained in:
parent
6018df70b0
commit
193421c5b3
1 changed files with 2 additions and 6 deletions
|
|
@ -147,14 +147,10 @@ inputs:
|
|||
description: 'Directory in which to execute codecov.sh'
|
||||
required: false
|
||||
|
||||
steps:
|
||||
- run:
|
||||
name: Upload to Codecov
|
||||
command: <<include(scripts/dist/codecov.sh)>>
|
||||
when: << parameters.when >>
|
||||
branding:
|
||||
color: 'red'
|
||||
icon: 'umbrella'
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
|
|
@ -180,7 +176,7 @@ runs:
|
|||
fi
|
||||
fi
|
||||
- name: Upload coverage to Codecov
|
||||
run: ./dist/codecov.sh
|
||||
run: ${GITHUB_ACTION_PATH}/dist/codecov.sh
|
||||
shell: bash
|
||||
working-directory: ${{ inputs.working-directory }}
|
||||
env:
|
||||
|
|
|
|||
Loading…
Reference in a new issue