diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml index 71373cca5de..241a6d5d6dc 100644 --- a/.github/workflows/release-binaries.yml +++ b/.github/workflows/release-binaries.yml @@ -33,3 +33,22 @@ jobs: rust_log: info # This step needs access to Docker Hub secrets to run successfully secrets: inherit + + # Each time this workflow is executed, a build will be triggered to create a new image + # with the corresponding tags using information from git + # + # The image will be named `zebrad-mining-rpcs-testnet:` + build: + name: Build Release Testnet Mining Docker + uses: ./.github/workflows/build-docker-image.yml + with: + dockerfile_path: ./docker/mining.Dockerfile + dockerfile_target: runtime + image_name: zebrad-mining-rpcs-testnet + network: Testnet + checkpoint_sync: true + rust_backtrace: '1' + zebra_skip_ipv6_tests: '1' + rust_log: info + # This step needs access to Docker Hub secrets to run successfully + secrets: inherit diff --git a/docker/mining-testnet.Dockerfile b/docker/mining.Dockerfile similarity index 100% rename from docker/mining-testnet.Dockerfile rename to docker/mining.Dockerfile