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 216f1fd commit 34713c6Copy full SHA for 34713c6
.github/actions/check-image-exists/action.yml
@@ -37,7 +37,7 @@ runs:
37
with open(os.environ['GITHUB_OUTPUT'], 'a') as fh:
38
print(f'image_exists={image_exists}', file=fh)
39
40
- print('Image exists' if image_exists === 'yes' else 'Image not found')
+ print('Image exists' if image_exists == 'yes' else 'Image not found')
41
shell: python
42
env:
43
SERVIC: ${{ inputs.service }}
0 commit comments