From e0de8701db0be6c14ab0e20e847c345d0122f9da Mon Sep 17 00:00:00 2001 From: bitdeals Date: Thu, 6 Aug 2026 13:08:48 +0000 Subject: [PATCH] ci: allow the publish job to be started by hand MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Also re-triggers the build, which is what this commit is for right now: the first run built the image and then stopped at docker login, because the registry secrets did not exist for this repository yet. workflow_dispatch earns its place beyond that — the image content depends on BITCOIN_VERSION, a build argument, so a new upstream release is a reason to rebuild without a commit to point at. --- .gitea/workflows/build.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 1822bd4..d0abc3c 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -1,6 +1,9 @@ name: Build docker image and push to registry.bitdeals.org run-name: docker build and docker push on: + # Manual trigger as well: the image also changes when upstream releases a new + # Core, which is a build argument here and not a commit. + workflow_dispatch: push: branches: - main