From 69c446da5aec18d24554165ab56114caf0cc0893 Mon Sep 17 00:00:00 2001 From: xeovalyte Date: Mon, 10 Apr 2023 20:22:26 +0200 Subject: [PATCH] Update '.gitea/workflows/ci.yml' --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c27c6c0..3b791ca 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -29,12 +29,12 @@ jobs: - uses: docker/setup-qemu-action@v2 - uses: docker/setup-buildx-action@v2 with: - platforms: linux/amd64,linux/arm/v8 + platforms: linux/amd64,linux/arm64 - uses: docker/login-action@v2 with: registry: gitea.xeovalyte.dev username: ${{ secrets.USERNAME }} password: ${{ secrets.PASSWORD }} - - run: docker build -t portfolio . + - run: docker buildx build -t portfolio --platform=linux/amd64,linux/arm64 . - run: docker tag portfolio gitea.xeovalyte.dev/xeovalyte.portfolio - run: docker push gitea.xeovalyte.dev/xeovalyte/portfolio