Skip to content

Commit

Permalink
ci: fix typo (inputs.token)
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyLewen committed Oct 22, 2024
1 parent fddb6a4 commit 2df9f60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ runs:
## ${{ github.token }} is default value for actions/checkout
## cf. https://github.com/actions/checkout/blob/eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871/action.yml#L24
run: |
if [ -z "${{ inputs.path }}" ]; then
if [ -z "${{ inputs.token }}" ]; then
echo "token=${{ github.token }}" >> $GITHUB_OUTPUT
else
echo "token=${{ inputs.path }}" >> $GITHUB_OUTPUT
echo "token=${{ inputs.token }}" >> $GITHUB_OUTPUT
fi
- name: Binary dir
Expand Down

0 comments on commit 2df9f60

Please sign in to comment.