From b8c7f8db1a3b0f615659578161613df046dcc0ee Mon Sep 17 00:00:00 2001 From: Jake Date: Thu, 19 Dec 2024 17:33:43 -0300 Subject: [PATCH] fix(cicd): adds checkout step --- .gitea/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index fad80ed..907f387 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -20,8 +20,12 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} - name: Build and push Main web app container image to registry - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v4 with: + context: . push: true tags: latest + platforms: | + linux/amd64 + linux/arm64 file: ./Dockerfile