Skip to content

Commit

Permalink
feat: multi arch docker builds
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieu-roudaut-crea committed Dec 1, 2023
1 parent e767bb3 commit ff890cf
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,34 +13,37 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: ${{ ! (github.event_name == 'release' && github.event.action == 'published') }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
-
name: Docker meta
id: meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository_owner }}/taxhub
tags: |
type=ref,event=branch
type=ref,event=tag
-
name: Login to GHCR
uses: docker/login-action@v2
uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and export
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
target: prod
build-args:
DEPS=${{ (github.event_name == 'release' && github.event.action == 'published') && 'pypi' || 'build' }}
Expand Down

0 comments on commit ff890cf

Please sign in to comment.