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-19 17:41:15 -03:00
parent 8c5b36c282
commit 79e0b7be27

View File

@ -19,11 +19,7 @@ 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 build -t jake/sprout-db-migrations:latest .
with: - name: Push
context: . run: docker push jake/sprout-db-migrations:latest
push: true
tags: |
jake/sprout-db-migrations:latest
file: ./Dockerfile