troubleshooting
Some checks failed
docker-monica-build development / dockerfile_lint (push) Successful in 4s
docker-monica-build development / build (push) Failing after 6s

This commit is contained in:
2025-10-25 21:22:11 +02:00
parent 6ade265350
commit 1201eb1b8b

View File

@@ -17,11 +17,23 @@ jobs:
build:
needs: dockerfile_lint
runs-on: ubuntu-22.04
env:
DOCKER_HOST: tcp://localhost:2376
DOCKER_TLS_VERIFY: '1'
DOCKER_CERT_PATH: /certs/client
steps:
- uses: actions/checkout@v4
- name: Clean Branch Name
id: clean_branch_name
run: |
CLEANED_BRANCH_NAME=$(echo "${GITHUB_REF_NAME}" | tr '[:upper:]' '[:lower:]' | tr '/_' '-')
echo "CLEAN_BRANCH_NAME=${CLEANED_BRANCH_NAME}" >> $GITHUB_ENV
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver-opts: host=tcp://localhost:2376
- name: Log in to registry
uses: docker/login-action@v2
@@ -30,12 +42,6 @@ jobs:
username: rogersik
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Clean Branch Name
id: clean_branch_name
run: |
CLEANED_BRANCH_NAME=$(echo "${GITHUB_REF_NAME}" | tr '[:upper:]' '[:lower:]' | tr '/_' '-')
echo "CLEAN_BRANCH_NAME=${CLEANED_BRANCH_NAME}" >> $GITHUB_ENV
- name: Build and push Docker image
run: |
docker buildx build \