fix(cicd): adds checkout step
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 48s
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 48s
This commit is contained in:
parent
eb750432fe
commit
d835b5b76c
@ -19,8 +19,15 @@ jobs:
|
|||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
- name: Build
|
- name: Set up QEMU
|
||||||
run: docker buildx build -t gitea.dropgaze.xyz/jake/sproute-db-migrations:latest --platform linux/amd64,linux/arm64 .
|
uses: docker/setup-qemu-action@v3
|
||||||
|
-
|
||||||
- name: Push
|
name: Set up Docker Buildx
|
||||||
run: docker push -t gitea.dropgaze.xyz/jake/sproute-db-migrations:latest
|
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
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user