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 24, 2024
1 parent 9fc5e73 commit c666c84
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@ name: FontProof
description: A font design testing class for SILE
inputs:
args:
description: Arguments passed to sile
description: Arguments passed to fontproof; defaults to ‘-t test’.
required: false
default: ""
default: -t test
runs:
using: docker
image: docker://ghcr.io/sile-typesetter/fontproof:v2.2.0
entrypoint: sh
args:
- ${{ inputs.args }}
- -c
- fontproof ${{ inputs.args }}
branding:
icon: book-open
color: blue

0 comments on commit c666c84

Please sign in to comment.