We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7946d8e commit 86e1b1eCopy full SHA for 86e1b1e
1 file changed
.github/workflows/publish-to-ghcr.yml
@@ -36,10 +36,9 @@ env:
36
IMAGE_NAME: |-
37
ghcr.io/${{ github.repository }}${{
38
case(
39
- inputs.container,
40
- 'nodemon', '',
41
- 'nodemon-telegram', '-telegram',
42
- 'nodemon-discord', '-discord',
+ inputs.container == 'nodemon', '',
+ inputs.container == 'nodemon-telegram', '-telegram',
+ inputs.container == 'nodemon-discord', '-discord',
43
''
44
)
45
}}
0 commit comments