From d835b5b76c0feb5f051634482dde7b7be7fe35e2 Mon Sep 17 00:00:00 2001 From: Jake Date: Fri, 20 Dec 2024 08:25:58 -0300 Subject: [PATCH] fix(cicd): adds checkout step --- .gitea/workflows/release.yml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 758ed5c..9611f3d 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -19,8 +19,15 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - - name: Build - run: docker buildx build -t gitea.dropgaze.xyz/jake/sproute-db-migrations:latest --platform linux/amd64,linux/arm64 . - - - name: Push - run: docker push -t gitea.dropgaze.xyz/jake/sproute-db-migrations:latest + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - + name: Build and push + uses: docker/build-push-action@v6 + with: + context: . + push: true + tags: jake/sproute-db-migrations:latest