multiarch support
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 5s

This commit is contained in:
Merith 2025-05-09 13:19:33 -07:00
parent 899b75f47d
commit 32826b49bc
2 changed files with 38 additions and 22 deletions

View file

@ -4,7 +4,7 @@ on:
push: push:
branches: branches:
- main - main
tags: tags:
- '!' # Exclude tags - '!' # Exclude tags
jobs: jobs:
@ -21,20 +21,27 @@ jobs:
echo "REPO_HOST=$(echo "${{ github.server_url }}" | sed 's~http[s]*://~~g')" >> $GITHUB_ENV echo "REPO_HOST=$(echo "${{ github.server_url }}" | sed 's~http[s]*://~~g')" >> $GITHUB_ENV
echo "REPO_PATH=${{ github.repository }}" >> $GITHUB_ENV echo "REPO_PATH=${{ github.repository }}" >> $GITHUB_ENV
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver: docker-container
driver-opts: |
network=host
- name: Login to OCI registry - name: Login to OCI registry
run: | run: |
echo "${{ secrets.OCI_TOKEN }}" | docker login $REPO_HOST -u "${{ secrets.OCI_USER }}" --password-stdin echo "${{ secrets.OCI_TOKEN }}" | docker login $REPO_HOST -u "${{ secrets.OCI_USER }}" --password-stdin
- name: Build and push Docker images - name: Build and push multi-arch Docker images
run: | run: |
# Build Docker image with commit SHA docker buildx build \
docker build -t $REPO_HOST/$REPO_PATH:${{ github.sha }} . --platform linux/amd64,linux/arm64 \
docker push $REPO_HOST/$REPO_PATH:${{ github.sha }} --tag $REPO_HOST/$REPO_PATH:${{ github.sha }} \
--tag $REPO_HOST/$REPO_PATH:nightly \
--push \
.
# Build Docker image with nightly tag - name: Cleanup
docker tag $REPO_HOST/$REPO_PATH:${{ github.sha }} $REPO_HOST/$REPO_PATH:nightly run: |
docker push $REPO_HOST/$REPO_PATH:nightly docker buildx prune -f
docker logout $REPO_HOST
# Remove local images to save storage
docker rmi $REPO_HOST/$REPO_PATH:${{ github.sha }}
docker rmi $REPO_HOST/$REPO_PATH:nightly

View file

@ -18,20 +18,29 @@ jobs:
run: | run: |
echo "REPO_HOST=$(echo "${{ github.server_url }}" | sed 's~http[s]*://~~g')" >> $GITHUB_ENV echo "REPO_HOST=$(echo "${{ github.server_url }}" | sed 's~http[s]*://~~g')" >> $GITHUB_ENV
echo "REPO_PATH=${{ github.repository }}" >> $GITHUB_ENV echo "REPO_PATH=${{ github.repository }}" >> $GITHUB_ENV
echo "TAG=${{ github.ref_name }}" >> $GITHUB_ENV
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver: docker-container
driver-opts: |
network=host
- name: Login to OCI registry - name: Login to OCI registry
run: | run: |
echo "${{ secrets.OCI_TOKEN }}" | docker login $REPO_HOST -u "${{ secrets.OCI_USER }}" --password-stdin echo "${{ secrets.OCI_TOKEN }}" | docker login $REPO_HOST -u "${{ secrets.OCI_USER }}" --password-stdin
- name: Build and push Docker image - name: Build and push Docker images
run: | run: |
TAG=${{ github.ref_name }} # Get the tag name from the context docker buildx build \
# Build and push multi-platform Docker images --platform linux/amd64,linux/arm64 \
docker build -t $REPO_HOST/$REPO_PATH:$TAG --push . --tag $REPO_HOST/$REPO_PATH:$TAG \
# Tag and push latest --tag $REPO_HOST/$REPO_PATH:latest \
docker tag $REPO_HOST/$REPO_PATH:$TAG $REPO_HOST/$REPO_PATH:latest --push \
docker push $REPO_HOST/$REPO_PATH:latest .
# Remove the local image to save storage - name: Cleanup
docker rmi $REPO_HOST/$REPO_PATH:$TAG run: |
docker rmi $REPO_HOST/$REPO_PATH:latest docker buildx prune -f
docker logout $REPO_HOST