From 3277530eacb3233c112b41c2a0d16238e3dd7036 Mon Sep 17 00:00:00 2001 From: jbergner Date: Tue, 15 Apr 2025 11:37:40 +0000 Subject: [PATCH] .gitea/workflows/registry.yml aktualisiert --- .gitea/workflows/registry.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/registry.yml b/.gitea/workflows/registry.yml index 20912ac..e5b94fa 100644 --- a/.gitea/workflows/registry.yml +++ b/.gitea/workflows/registry.yml @@ -48,4 +48,16 @@ jobs: push: true tags: | # replace it with your local IP and tags ${{ 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 + ${{ vars.DOCKER_REGISTRY }}/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ env.DOCKER_LATEST }} + + - name: Build and push Ubuntu + uses: docker/build-push-action@v4 + with: + context: . + file: ./DockerfileUbuntu + platforms: | + linux/amd64 + push: true + tags: | # replace it with your local IP and tags + ${{ vars.DOCKER_REGISTRY }}/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }}_ubuntu + ${{ vars.DOCKER_REGISTRY }}/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ env.DOCKER_LATEST }}_ubuntu \ No newline at end of file