From 2b29c22ea4d55d7c8bed241818cc1ee35b418db6 Mon Sep 17 00:00:00 2001 From: matsewe Date: Wed, 3 Jul 2024 10:08:38 +0200 Subject: [PATCH] update action --- .gitea/workflows/build-push-image.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/build-push-image.yml b/.gitea/workflows/build-push-image.yml index 29b3e81..819790f 100644 --- a/.gitea/workflows/build-push-image.yml +++ b/.gitea/workflows/build-push-image.yml @@ -9,8 +9,8 @@ jobs: container: image: catthehacker/ubuntu:act-latest env: - DOCKER_ORG: teacup - DOCKER_LATEST: nightly + DOCKER_ORG: matthias + DOCKER_LATEST: latest RUNNER_TOOL_CACHE: /toolcache steps: - name: Checkout @@ -23,14 +23,14 @@ jobs: uses: docker/setup-buildx-action@v2 with: # replace it with your local IP config-inline: | - [registry."gitea:3000"] + [registry."git.matsewe.de:3000"] http = true insecure = true - name: Login to DockerHub uses: docker/login-action@v2 with: - registry: gitea:3000 # replace it with your local IP + registry: git.matsewe.de:3000 # 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 - gitea:3000/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }} - gitea:3000/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ env.DOCKER_LATEST }} \ No newline at end of file + 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