Skip to content

Commit

Permalink
feat(actions): Make it easier to override input arguments from workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Sep 19, 2024
1 parent 73cc0c6 commit 86559be
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: Fontship
description: A font development toolkit and collaborative work flow
inputs:
args:
description: Arguments passed to CLI; defaults to ‘make’.
required: false
default: make dist
outputs:
family-names:
description: Font Family Names
Expand All @@ -12,9 +17,7 @@ outputs:
runs:
using: docker
image: docker://ghcr.io/theleagueof/fontship:v0.9.5
args:
- make
- dist
args: ${{ inputs.args }}
branding:
icon: truck
color: green

0 comments on commit 86559be

Please sign in to comment.