This commit is contained in:
parent
cc5ddc91c5
commit
9844583050
2 changed files with 6 additions and 2 deletions
|
@ -54,7 +54,9 @@ jobs:
|
|||
apt-get install -y --no-install-recommends podman buildah
|
||||
|
||||
- name: Workaround for bug of podman-login
|
||||
run: 'echo "{ \"auths\": {} }" > $HOME/.docker/config.json'
|
||||
run: |
|
||||
mkdir $HOME/.docker
|
||||
echo "{ \"auths\": {} }" > $HOME/.docker/config.json
|
||||
|
||||
- name: Log in to container registry
|
||||
uses: actions/podman-login@v1
|
||||
|
|
|
@ -35,7 +35,9 @@ jobs:
|
|||
run: pytest -s tests/basic.py
|
||||
|
||||
- name: Workaround for bug of podman-login
|
||||
run: 'echo "{ \"auths\": {} }" > $HOME/.docker/config.json'
|
||||
run: |
|
||||
mkdir $HOME/.docker
|
||||
echo "{ \"auths\": {} }" > $HOME/.docker/config.json
|
||||
|
||||
- name: Log in to container registry
|
||||
uses: actions/podman-login@v1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue