Attempt to fix build failures

This commit is contained in:
Matthew Penner 2020-12-15 10:15:43 -07:00
parent aa617923c4
commit 6faf0c286c

View file

@ -49,13 +49,11 @@ jobs:
username: ${{ github.repository_owner }} username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }} password: ${{ secrets.CR_PAT }}
- name: Build - name: Build and Push
uses: docker/build-push-action@v2 uses: docker/build-push-action@v2
with: with:
context: ./${{ matrix.image }} context: ./${{ matrix.image }}
file: ./${{ matrix.image }}/Dockerfile file: ./${{ matrix.image }}/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/${{ github.repository_owner }}/${{ matrix.image }}:latest tags: ghcr.io/${{ github.repository_owner }}/${{ matrix.image }}:latest
load: true
- name: Push
run: docker push ghcr.io/${{ github.repository_owner }}/${{ matrix.image }}:latest