fix(cicd): adds checkout step
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 11s

This commit is contained in:
Jake 2024-12-20 08:16:50 -03:00
parent c60ebb0bc7
commit 9225b8947d

View File

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