Skip to content

Commit

Permalink
fix(action): Args passed to Docker must be an array even if all you w…
Browse files Browse the repository at this point in the history
…ant is a string
  • Loading branch information
alerque committed Sep 21, 2024
1 parent 6a0d1ee commit a1cabd2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ outputs:
runs:
using: docker
image: docker://ghcr.io/theleagueof/fontship:v0.9.6
args: ${{ inputs.args }}
args:
- ${{ inputs.args }}
branding:
icon: truck
color: green

0 comments on commit a1cabd2

Please sign in to comment.