From 7f72c94b9e6908107065f2ef11974bd3152b5f1a Mon Sep 17 00:00:00 2001 From: matsewe Date: Wed, 3 Jul 2024 10:09:48 +0200 Subject: [PATCH] updaet action --- .gitea/workflows/build-push-image.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build-push-image.yml b/.gitea/workflows/build-push-image.yml index 819790f..8ddebef 100644 --- a/.gitea/workflows/build-push-image.yml +++ b/.gitea/workflows/build-push-image.yml @@ -23,14 +23,14 @@ jobs: uses: docker/setup-buildx-action@v2 with: # replace it with your local IP config-inline: | - [registry."git.matsewe.de:3000"] + [registry."git.matsewe.de"] http = true insecure = true - name: Login to DockerHub uses: docker/login-action@v2 with: - registry: git.matsewe.de:3000 # replace it with your local IP + registry: git.matsewe.de # replace it with your local IP username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} @@ -50,5 +50,5 @@ jobs: linux/arm64 push: true tags: | # replace it with your local IP and tags - git.matsewe.de:3000/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }} - git.matsewe.de:3000/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ env.DOCKER_LATEST }} \ No newline at end of file + git.matsewe.de/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }} + git.matsewe.de/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ env.DOCKER_LATEST }} \ No newline at end of file