From 877d1dee25465dd8e91976769831de96baafbe12 Mon Sep 17 00:00:00 2001 From: xeovalyte Date: Tue, 11 Apr 2023 10:15:59 +0200 Subject: [PATCH] Update '.gitea/workflows/ci.yml' --- .gitea/workflows/ci.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 2266696..69b41a4 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -28,13 +28,16 @@ jobs: - uses: docker/setup-qemu-action@v2 - uses: docker/setup-buildx-action@v2 - with: - platforms: linux/amd64,linux/arm64 + - uses: docker/login-action@v2 with: registry: gitea.xeovalyte.dev username: ${{ secrets.USERNAME }} password: ${{ secrets.PASSWORD }} - - run: docker buildx build -t gitea.xeovalyte.dev/xeovalyte/portfolio --platform=linux/amd64,linux/arm64 . - - run: docker inspect gitea.xeovalyte.dev/xeovalyte/portfolio - - run: docker push gitea.xeovalyte.dev/xeovalyte/portfolio + - uses: docker/build-push-action@v4 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: true + tags: gitea.xeovalyte.dev/xeovalyte/portfolio:latest +