Skip to content

Commit

Permalink
fix: builds failing due to input desc examples being evaluated by github
Browse files Browse the repository at this point in the history
this time by using the HTML entity for the dollar sign to display it, because escaping apparently doesn't work
  • Loading branch information
xynydev committed Feb 22, 2024
1 parent c0cabfd commit 5d69b36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ inputs:
description: |
The Sigstore/cosign secret used to sign the image.
Example: `\${{ secrets.SIGNING_SECRET }}`
Example: `${{ secrets.SIGNING_SECRET }}`
required: true
registry_token:
description: |
The token used to sign into the container registry.
Example: `\${{ github.token }}`
Example: `${{ github.token }}`
required: true
pr_event_number:
description: |
The event number used to tag images pushed from pull requests.
Example: `\${{ github.event.number }}`
Example: `${{ github.event.number }}`
required: true
registry:
description: |
Expand Down

0 comments on commit 5d69b36

Please sign in to comment.