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 cf7e239 commit 407bf54Copy full SHA for 407bf54
action.yml
@@ -86,10 +86,10 @@ runs:
86
&& ( ! inputs.registry_url
87
|| ! inputs.registry_user
88
|| ! inputs.registry_pass)
89
- shell: bash
90
- run: |
91
- echo "::error ::'push_image' specified but missing 'registry_url', 'registry_user', or 'registry_pass'"
92
- exit 1
+ uses: actions/github-script@v3
+ with:
+ script: |
+ core.setFailed("'push_image' specified but missing 'registry_url', 'registry_user', or 'registry_pass'")
93
94
- id: generate-tags
95
name: Generate tag list
0 commit comments