From aabc3ec759fcfee60c3ccc795845da42ab18fb9f Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Wed, 13 Dec 2023 01:11:44 +0100 Subject: [PATCH] try pushing image --- .gitea/workflows/container.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/container.yaml b/.gitea/workflows/container.yaml index 2d33370..2a53e6b 100644 --- a/.gitea/workflows/container.yaml +++ b/.gitea/workflows/container.yaml @@ -15,9 +15,12 @@ jobs: archs: arm64, amd64 containerfiles: | ./Containerfile - - name: Log in to Dockerhub - uses: redhat-actions/podman-login@v1 + - name: Push to dockerhub + id: push-to-dockerhub + uses: redhat-actions/push-to-registry@v2 with: + image: ${{ steps.build-image.outputs.image }} + tags: ${{ steps.build-image.outputs.tags }} registry: docker.io username: ${{ secrets.DOCKERHUB_USER }} password: ${{ secrets.DOCKERHUB_PW }}