Merge pull request #4 from nogara/patch-1 #17
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: Test | |
on: [push] | |
jobs: | |
test: | |
name: Test-Action | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Test Action | |
id: test | |
uses: ./ | |
with: | |
base-image: alpine:3.13 | |
image: alpine:3.14 | |
- name: Get Test Output | |
run: echo "Workflow Docker Image ${{ steps.test.outputs.needs-update }}" | |
- name: Check value | |
run: echo "Needs updating" | |
if: steps.test.outputs.needs-update == 'true' |