CI: build: fix registry login 9
Some checks failed
/ build (push) Failing after 35s

This commit is contained in:
phil 2024-10-29 04:09:46 +01:00
parent cc5ddc91c5
commit 9844583050
2 changed files with 6 additions and 2 deletions

View file

@ -54,7 +54,9 @@ jobs:
apt-get install -y --no-install-recommends podman buildah apt-get install -y --no-install-recommends podman buildah
- name: Workaround for bug of podman-login - 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 - name: Log in to container registry
uses: actions/podman-login@v1 uses: actions/podman-login@v1

View file

@ -35,7 +35,9 @@ jobs:
run: pytest -s tests/basic.py run: pytest -s tests/basic.py
- name: Workaround for bug of podman-login - 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 - name: Log in to container registry
uses: actions/podman-login@v1 uses: actions/podman-login@v1