Skip to content

Commit 5d69b36

Browse files
committed
fix: builds failing due to input desc examples being evaluated by github
this time by using the HTML entity for the dollar sign to display it, because escaping apparently doesn't work
1 parent c0cabfd commit 5d69b36

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ inputs:
1010
description: |
1111
The Sigstore/cosign secret used to sign the image.
1212
13-
Example: `\${{ secrets.SIGNING_SECRET }}`
13+
Example: `${{ secrets.SIGNING_SECRET }}`
1414
required: true
1515
registry_token:
1616
description: |
1717
The token used to sign into the container registry.
1818
19-
Example: `\${{ github.token }}`
19+
Example: `${{ github.token }}`
2020
required: true
2121
pr_event_number:
2222
description: |
2323
The event number used to tag images pushed from pull requests.
2424
25-
Example: `\${{ github.event.number }}`
25+
Example: `${{ github.event.number }}`
2626
required: true
2727
registry:
2828
description: |

0 commit comments

Comments
 (0)