4 Commits

Author SHA1 Message Date
1443cfee12 ok only docker hub
Some checks failed
ci / docker (push) Failing after 9m27s
2025-06-10 11:06:45 +02:00
0d17b5d474 write permissions for packages
Some checks failed
ci / docker (push) Failing after 11m14s
2025-06-10 11:02:01 +02:00
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

View File

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