From 2df9f605c29dbee29f7c66a8151e3b97f0874f5d Mon Sep 17 00:00:00 2001 From: DmitriyLewen Date: Tue, 22 Oct 2024 11:52:07 +0600 Subject: [PATCH] ci: fix typo (inputs.token) --- action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yaml b/action.yaml index c06fcbd..375e772 100644 --- a/action.yaml +++ b/action.yaml @@ -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