gha-docker-image-exists Test #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: gha-docker-image-exists Test | |
on: | |
workflow_dispatch: | |
jobs: | |
success: | |
runs-on: ubuntu-latest | |
steps: | |
- name: GHA Docker Image Exists | |
id: gha-docker-image-exists | |
continue-on-error: true | |
uses: Y0sh1dk/gha-docker-image-exists@feature/multi-arch-tests | |
with: | |
image: nginx:latest | |
- name: Check output | |
run: | | |
if [ ${{ steps.gha-docker-image-exists.outcome == 'success' }} ]; then | |
exit 0 | |
else | |
exit 1 | |
fi | |
fail: | |
runs-on: ubuntu-latest | |
steps: | |
- name: GHA Docker Image Exists | |
id: gha-docker-image-exists | |
continue-on-error: true | |
uses: Y0sh1dk/gha-docker-image-exists@feature/multi-arch-tests | |
with: | |
image: nginx:invalid-tag | |
- name: Check output | |
run: | | |
if [ ${{ steps.gha-docker-image-exists.outcome == 'failure' }} ]; then | |
exit 0 | |
else | |
exit 1 | |
fi |