testing
Some checks failed
Build and Deploy Docker Image / build (push) Failing after 50s

This commit is contained in:
Mike 2024-10-21 14:18:43 -04:00
parent 64f0ba6246
commit f639cc1337

View file

@ -10,15 +10,16 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: see if docker is in path
run: docker info
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Set up Docker Buildx - name: Set up Docker Buildx
image: docker:dind
uses: docker/setup-buildx-action@v2 uses: docker/setup-buildx-action@v2
- name: Log in to Gitea Container Registry - name: Log in to Gitea Container Registry
image: docker:dind
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
password: ${{ secrets.PASSWORD }} password: ${{ secrets.PASSWORD }}
@ -26,7 +27,6 @@ jobs:
registry: http://git.thecodedom.com:3000 registry: http://git.thecodedom.com:3000
- name: Build and push Docker image - name: Build and push Docker image
image: docker:dind
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
with: with:
context: . context: .