From a808b4a55de7285706441b06e79f796c42ceaa74 Mon Sep 17 00:00:00 2001 From: groot Date: Mon, 31 Mar 2025 14:46:07 +0000 Subject: [PATCH] .gitea/workflows/docker.yml aktualisiert --- .gitea/workflows/docker.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/docker.yml b/.gitea/workflows/docker.yml index cfe785d..20912ac 100644 --- a/.gitea/workflows/docker.yml +++ b/.gitea/workflows/docker.yml @@ -5,9 +5,9 @@ on: - 'main' jobs: release-image: - runs-on: ubuntu-latest + runs-on: ubuntu-fast env: - DOCKER_ORG: sendnrw + DOCKER_ORG: ${{ vars.DOCKER_ORG }} DOCKER_LATEST: latest RUNNER_TOOL_CACHE: /toolcache steps: @@ -21,14 +21,14 @@ jobs: uses: docker/setup-buildx-action@v2 with: # replace it with your local IP config-inline: | - [registry."git.send.nrw"] + [registry."${{ vars.DOCKER_REGISTRY }}"] http = true - insecure = true + insecure = true - name: Login to DockerHub uses: docker/login-action@v2 with: - registry: git.send.nrw # replace it with your local IP + registry: ${{ vars.DOCKER_REGISTRY }} # replace it with your local IP username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} @@ -36,7 +36,7 @@ jobs: id: meta run: | echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT - echo REPO_VERSION=$(git describe --tags --always | sed 's/^v//') >> $GITHUB_OUTPUT + echo REPO_VERSION=$(git describe --tags --always | sed 's/^v//') >> $GITHUB_OUTPUT - name: Build and push uses: docker/build-push-action@v4 @@ -44,8 +44,8 @@ jobs: context: . file: ./Dockerfile platforms: | - linux/amd64 + linux/amd64 push: true tags: | # replace it with your local IP and tags - git.send.nrw/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }} - git.send.nrw/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ env.DOCKER_LATEST }} \ No newline at end of file + ${{ vars.DOCKER_REGISTRY }}/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }} + ${{ vars.DOCKER_REGISTRY }}/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ env.DOCKER_LATEST }} \ No newline at end of file