3 Commits

Author SHA1 Message Date
3eed66b9a9 testing
Some checks failed
ci / docker (push) Failing after 11m17s
2025-06-10 10:54:13 +02:00
184e673277 correct token for docker login
Some checks failed
ci / docker (push) Failing after 11m17s
2025-06-10 10:51:10 +02:00
83926b0f9a push only to github
Some checks failed
ci / docker (push) Failing after 11m2s
2025-06-10 10:44:33 +02:00

9
.github/workflows/build-docker.yml vendored Normal file → Executable file
View File

@ -20,7 +20,6 @@ jobs:
with:
# list of Docker images to use as base name for tags
images: |
hascheksolutions/http2pic
ghcr.io/hascheksolutions/http2pic
# generate Docker tags based on the following events/attributes
tags: |
@ -35,18 +34,12 @@ jobs:
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Login to GHCR
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5