Skip to content

Commit 531e909

Browse files
action.yml: Pass the asset as env var to avoid bash interpretation of curly brackets
1 parent 9bd1fbb commit 531e909

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

action.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ runs:
2626
shell: bash
2727
- run: chmod +x gh-downloader
2828
shell: bash
29-
- run: ./gh-downloader -r ${{ inputs.repo }} -a ${{ inputs.asset }} -o ${{ inputs.output }} --mode ${{ inputs.mode }}
29+
- run: ./gh-downloader -r ${{ inputs.repo }} -o ${{ inputs.output }} --mode ${{ inputs.mode }}
3030
shell: bash
3131
env:
3232
GITHUB_TOKEN: ${{ inputs.github-token }}
3333
SCHEME: ${{ inputs.scheme }}
34+
ASSET: ${{ inputs.asset }}

0 commit comments

Comments
 (0)