Compare commits

...

7 Commits

Author SHA1 Message Date
9734ccb9a2 fix(cicd): adds checkout step
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 48s
2024-12-20 16:25:38 -03:00
d6605d803a fix(cicd): adds checkout step
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 43s
2024-12-20 11:50:43 -03:00
6fdc2be4fc fix(cicd): adds checkout step
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 42s
2024-12-20 08:36:00 -03:00
7aba08ef32 fix(cicd): adds checkout step
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 26s
2024-12-20 08:34:29 -03:00
326b0e9947 fix(cicd): adds checkout step
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 50s
2024-12-20 08:32:36 -03:00
d835b5b76c fix(cicd): adds checkout step
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 48s
2024-12-20 08:25:58 -03:00
eb750432fe fix(cicd): adds checkout step 2024-12-20 08:24:39 -03:00
2 changed files with 9 additions and 8 deletions

View File

@@ -19,13 +19,16 @@ jobs:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Main web app container image to registry
uses: docker/build-push-action@v4
- 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
tags: gitea.dropgaze.xyz/jake/sprout-db-migrations:latest
platforms: |
linux/amd64
linux/arm64
file: ./Dockerfile
linux/amd64

View File

@@ -1,7 +1,5 @@
FROM amacneil/dbmate:latest
WORKDIR /app/migrations
COPY db/migrations /app/migrations
COPY ./db /db
CMD ["--wait", "up"]