diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 9cc6eca..2ad77fc 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -33,7 +33,7 @@ jobs: - name: Log into registry run: | - podman login --username "${{ forge.actor }}" --password "${{ forge.token }}" ${{ env.registry }} + podman login --authfile ~/.config/containers/auth.json --username "${{ forge.actor }}" --password "${{ forge.token }}" ${{ env.registry }} - name: __DEBUG__ run: | @@ -48,5 +48,6 @@ jobs: - name: Push image run: >- podman push + --authfile ~/.config/containers/auth.json localhost/default:latest ${{ env.registry }}/${{ env.owner }}/${{ env.image }}:${{ env.tag }}