Update docker-build-multiarch.yml

This commit is contained in:
2025-11-02 10:33:04 -08:00
parent 79a0585daf
commit f64eca90df
2 changed files with 11 additions and 10 deletions

View File

@@ -40,3 +40,14 @@ jobs:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build Docker image
run: |
docker buildx build \
--platform ${{ env.PLATFORMS }} \
-t ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.TAG_NAME }} \
--push --progress=plain .
- name: Inspect pushed manifest
run: |
docker buildx imagetools inspect ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.TAG_NAME }}

View File

@@ -1,10 +0,0 @@
name: Test
on:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: sleep 600