Install latest podman in workflow

Signed-off-by: diagrawa <agrawaldivyanshu3005@gmail.com>
This commit is contained in:
diagrawa 2021-09-30 11:13:18 +05:30 committed by Tim Etchells
parent 0fc254dd6e
commit d0c6b3cf9b
2 changed files with 22 additions and 0 deletions

View file

@ -15,10 +15,20 @@ jobs:
podman-pull:
name: Log in and pull image with Podman
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
install_latest: [ true, false ]
steps:
- uses: actions/checkout@v2
- name: Install latest podman
if: matrix.install_latest
run: |
bash .github/install_latest_podman.sh
- name: Log in to quay.io
uses: ./
with:
@ -36,6 +46,11 @@ jobs:
- uses: actions/checkout@v2
- name: Install latest podman
if: matrix.install_latest
run: |
bash .github/install_latest_podman.sh
- name: Log in to quay.io
uses: ./
with: