From 76a086f3e8414a7b1953ee0b879d45e579edb4fc Mon Sep 17 00:00:00 2001 From: pasta Date: Sat, 18 Nov 2023 11:26:51 -0600 Subject: [PATCH] build: change repo for Dockerfile.GitHubActions.Release to dash-dev-branches --- contrib/containers/deploy/Dockerfile.GitHubActions.Release | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/containers/deploy/Dockerfile.GitHubActions.Release b/contrib/containers/deploy/Dockerfile.GitHubActions.Release index 433669579a..c4106fa86c 100644 --- a/contrib/containers/deploy/Dockerfile.GitHubActions.Release +++ b/contrib/containers/deploy/Dockerfile.GitHubActions.Release @@ -24,7 +24,7 @@ RUN apt-get update && \ RUN mach=$(uname -m) \ && case $mach in aarch64) arch="aarch64-linux-gnu"; ;; x86_64) arch="x86_64-linux-gnu"; ;; *) echo "ERROR: Machine type $mach not supported."; ;; esac \ - && wget https://github.com/dashpay/dash/releases/download/v${TAG}/dashcore-${TAG}-$arch.tar.gz -P /tmp \ + && wget https://github.com/dashpay/dash-dev-branches/releases/download/v${TAG}/dashcore-${TAG}-$arch.tar.gz -P /tmp \ && tar -xvf /tmp/dashcore-*.tar.gz -C /tmp/ \ && cp /tmp/dashcore*/bin/* /usr/local/bin \ && rm -rf /tmp/dashcore* \