Skip to content

Commit

Permalink
fix: use env
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu-codecov committed Nov 3, 2023
1 parent 56c57ed commit 2a98d52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ runs:
using: "composite"
steps:
- name: what is token
run: echo ${{ inputs.token }}
run: echo ${{ inp }}
shell: bash
- id: codecov-ats
run: ./codecov_ats.sh
shell: bash
env:
CODECOV_TOKEN: ${{ inputs.token }}
CODECOV_STATIC_TOKEN: ${{ inputs.static_token }}
CODECOV_TOKEN: ${CODECOV_TOKEN} || ${{ inputs.token }}
CODECOV_STATIC_TOKEN: ${CODECOV_STATIC_TOKEN} || ${{ inputs.static_token }}

0 comments on commit 2a98d52

Please sign in to comment.