From 9225b8947de9ac97ef9cd161a7b331dc5005797f Mon Sep 17 00:00:00 2001 From: Jake Date: Fri, 20 Dec 2024 08:16:50 -0300 Subject: [PATCH] fix(cicd): adds checkout step --- .gitea/workflows/release.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 6b50bff..6f6450f 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -19,7 +19,13 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - - name: Build - run: docker build -t gitea.dropgaze.xyz/jake/sprout-db-migrations:latest . - - name: Push - run: docker push gitea.dropgaze.xyz/jake/sprout-db-migrations:latest + - name: Build and push Main web app container image to registry + uses: docker/build-push-action@v4 + with: + context: . + push: true + tags: jake/sproute-db-migrations:latest + platforms: | + linux/amd64 + linux/arm64 + file: ./Dockerfile