From b5534fa24e63cdfdbe3b68204de6600e60cca44f Mon Sep 17 00:00:00 2001 From: bitdeals Date: Thu, 6 Aug 2026 13:08:51 +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 ELECTRUMX_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 ae8749b..171951c 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 + # ElectrumX, which is a build argument here and not a commit. + workflow_dispatch: push: branches: - main