Attempt to add arm64 build
This commit is contained in:
parent
ff688b6f56
commit
d49cf0a77f
1 changed files with 6 additions and 1 deletions
7
.github/workflows/docker-publish.yml
vendored
7
.github/workflows/docker-publish.yml
vendored
|
@ -36,11 +36,16 @@ jobs:
|
|||
- name: Code Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install buildx
|
||||
uses: crazy-max/ghaction-docker-buildx@v1
|
||||
with:
|
||||
version: latest
|
||||
|
||||
- name: Registry Authentication
|
||||
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
|
||||
|
||||
- name: Build Image
|
||||
run: docker build ./${{ matrix.image }} --tag ${{ matrix.image }}
|
||||
run: docker buildx build ./${{ matrix.image }} --tag ${{ matrix.image }} --platform linux/amd64,linux/arm64
|
||||
|
||||
- name: Push Image
|
||||
run: |
|
||||
|
|
Loading…
Reference in a new issue