update workflow
All checks were successful
Build images / check-docker (push) Successful in 3s
Build images / build-and-push (push) Successful in 4m30s

This commit is contained in:
docker-claude 2026-04-15 16:52:40 +02:00
parent 50cfa9da4e
commit ff9ed447c0

View file

@ -55,10 +55,17 @@ jobs:
uses: docker/setup-buildx-action@v3
with:
driver: docker-container
- name: Docker publish
- name: Docker publish proxy
uses: docker/build-push-action@v6
with:
context: .
context: proxy
push: true
platforms: linux/amd64, linux/arm64
tags: ${{ vars.REGISTRY_URL }}/docker/${{ env.GITHUB_REPOSITORY }}:0.1.${{ env.GITHUB_RUN_NUMBER }}
tags: ${{ vars.REGISTRY_URL }}/docker/${{ env.GITHUB_REPOSITORY }}-proxy:0.1.${{ env.GITHUB_RUN_NUMBER }}
- name: Docker publish claude
uses: docker/build-push-action@v6
with:
context: claude
push: true
platforms: linux/amd64, linux/arm64
tags: ${{ vars.REGISTRY_URL }}/docker/${{ env.GITHUB_REPOSITORY }}-claude:0.1.${{ env.GITHUB_RUN_NUMBER }}