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

This commit is contained in:
Mike 2025-01-03 10:25:08 -05:00
parent 3641db8ee1
commit eadd9d1dec

View file

@ -13,23 +13,21 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
- run: env - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
# - name: Set up Docker Buildx - name: Log in to Gitea Container Registry
# uses: docker/setup-buildx-action@v2 uses: docker/login-action@v3
# with:
# - name: Log in to Gitea Container Registry password: ${{ secrets.GITEA_TOKEN }}
# uses: docker/login-action@v3 username: ${{ github.repository_owner }}
# with: registry: git.thecodedom.com
# password: ${{ secrets.PASSWORD }}
# username: ${{ secrets.USERNAME }} - name: Build and push Docker image
# registry: git.thecodedom.com uses: docker/build-push-action@v6
# with:
# - name: Build and push Docker image context: .
# uses: docker/build-push-action@v6 push: true
# with: tags: git.thecodedom.com/smig/frontendmentor:latest
# context: .
# push: true
# tags: git.thecodedom.com/dotechbro/dotechbro-website:latest