We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f654adc commit 0ce4850Copy full SHA for 0ce4850
.github/workflows/clean-cache.yml
@@ -3,7 +3,7 @@ name: Clean image cache
3
on:
4
workflow_dispatch:
5
inputs:
6
- dryrun:
+ dry-run:
7
description: Dry Run
8
type: boolean
9
required: false
@@ -27,4 +27,4 @@ jobs:
27
with:
28
package: manylinux-cache
29
delete-untagged: true
30
- dry-run: (github.event_name == 'workflow_dispatch') && fromJSON(github.event.inputs.dryrun)
+ dry-run: ${{ (github.event_name == 'workflow_dispatch') && fromJSON(github.event.inputs.dry-run) }}
0 commit comments