Update Docker credentials and registry in workflow
Some checks failed
Publish / publish (push) Failing after 9h0m20s

This commit is contained in:
Valentin Heiserer
2025-11-18 22:10:23 +01:00
committed by GitHub
parent fdc76d629b
commit 24f5415f5b

View File

@@ -14,9 +14,9 @@ jobs:
- name: Build & push
uses: mr-smithers-excellent/docker-build-push@v6
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
image: ${{ github.repository_owner }}/gitea-runner-windows
tags: ${{ github.ref_name }}, latest
registry: docker.io
registry: ghcr.io
buildArgs: SERVERCORE_VERSION="ltsc2022",RUNNER_VERSION="${{ github.ref_name }}"