ok only docker hub
Some checks failed
ci / docker (push) Failing after 9m27s

This commit is contained in:
Chris 2025-06-10 11:06:45 +02:00
parent 0d17b5d474
commit 1443cfee12

View File

@ -8,10 +8,6 @@ on:
branches:
- "master"
permissions:
contents: read
packages: write
jobs:
docker:
runs-on: ubuntu-latest
@ -24,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
@ -38,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.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with: