diff options
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ffed23..73fdba9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,6 +52,6 @@ jobs: with: context: '${{ matrix.project }}' file: '${{ matrix.project }}/Dockerfile' - platforms: linux/i386,linux/amd64,linux/armhf + platforms: i386,amd64,armhf push: true tags: '${{ secrets.DOCKERHUB_USERNAME }}/${{ matrix.project }}:latest' @@ -25,7 +25,7 @@ DO: PROJECT := fr24feed # Target platforms (used by buildx): -PLATFORMS := linux/i386,linux/amd64,linux/armhf +PLATFORMS := i386,amd64,armhf # Docker Hub credentials: DOCKER_USERNAME := egortensin # Use BuildKit, which is required (i.e. for using variables in FROM): |