diff --git a/.gitea/workflows/build-push.yaml b/.gitea/workflows/build-push.yaml index ccf3ec9..be2174b 100644 --- a/.gitea/workflows/build-push.yaml +++ b/.gitea/workflows/build-push.yaml @@ -67,20 +67,15 @@ jobs: exit 1 shell: bash - - name: Log in to Niepce Docker Registry - uses: redhat-actions/podman-login@v1 - with: - registry: ${{ env.IMAGE_REGISTRY }} - username: ${{ env.REGISTRY_USER }} - password: ${{ env.REGISTRY_PASSWORD }} - - - name: Push to GitHub Container Repository + - name: Push to Niepce Container Repository id: push-to-niepce uses: redhat-actions/push-to-registry@v2 with: image: ${{ steps.build-image.outputs.image }} tags: ${{ steps.build-image.outputs.tags }} registry: ${{ env.IMAGE_REGISTRY }} + username: ${{ env.REGISTRY_USER }} + password: ${{ env.REGISTRY_PASSWORD }} - name: Push image failed if: failure()