mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
ci: Use docker buildx and qemu to build ARM64 images
This commit is contained in:
parent
dab36e41a7
commit
cc92db42fc
1 changed files with 8 additions and 0 deletions
8
.github/workflows/cicd.yml
vendored
8
.github/workflows/cicd.yml
vendored
|
@ -90,6 +90,13 @@ jobs:
|
||||||
if: github.ref_type == 'tag'
|
if: github.ref_type == 'tag'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v1
|
||||||
|
with:
|
||||||
|
platforms: arm64
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
id: buildx
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
- name: "Login to Docker Hub"
|
- name: "Login to Docker Hub"
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v1
|
||||||
with:
|
with:
|
||||||
|
@ -105,6 +112,7 @@ jobs:
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
|
platforms: linux/amd64,linux/arm64/v8
|
||||||
push: true
|
push: true
|
||||||
tags: |
|
tags: |
|
||||||
foxcpp/maddy:${{ github.ref_name }}
|
foxcpp/maddy:${{ github.ref_name }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue