Attempt to add arm64 build

This commit is contained in:
Matthew Penner 2020-12-15 09:01:10 -07:00
parent ff688b6f56
commit d49cf0a77f

View file

@ -36,11 +36,16 @@ jobs:
- name: Code Checkout - name: Code Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Install buildx
uses: crazy-max/ghaction-docker-buildx@v1
with:
version: latest
- name: Registry Authentication - name: Registry Authentication
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
- name: Build Image - 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 - name: Push Image
run: | run: |