fix(cicd): adds checkout step

This commit is contained in:
Jake 2024-12-20 08:24:39 -03:00
parent 9225b8947d
commit eb750432fe

View File

@ -19,13 +19,8 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Main web app container image to registry - name: Build
uses: docker/build-push-action@v4 run: docker buildx build -t gitea.dropgaze.xyz/jake/sproute-db-migrations:latest --platform linux/amd64,linux/arm64 .
with:
context: . - name: Push
push: true run: docker push -t gitea.dropgaze.xyz/jake/sproute-db-migrations:latest
tags: jake/sproute-db-migrations:latest
platforms: |
linux/amd64
linux/arm64
file: ./Dockerfile