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

This commit is contained in:
phil 2024-10-28 18:40:34 +01:00
parent bbbbf67ba5
commit c4f5a73a49
2 changed files with 8 additions and 1 deletions

View file

@ -61,6 +61,13 @@ jobs:
containerfiles: |
./Containerfile.for_runner
- name: Log in to container registry
uses: actions/podman-login@v1
with:
registry: ${{ vars.REGISTRY }}
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- uses: actions/push-to-registry@v2
if: ${{ inputs.push }}
with:

View file

@ -36,7 +36,7 @@ jobs:
- name: Log in to container registry
uses: actions/podman-login@v1
with:
registry: "docker://${{ vars.REGISTRY }}"
registry: ${{ vars.REGISTRY }}
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASSWORD }}