From 8e4c69c61f1d496917a7b731adfa739b42515483 Mon Sep 17 00:00:00 2001 From: Albert Meltzer <7529386+kitbellew@users.noreply.github.com> Date: Fri, 21 Feb 2025 12:54:12 -0800 Subject: [PATCH] CI: synchronize the docker download location --- .github/workflows/ci.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b07ae187d2..27baafdc7e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -201,7 +201,7 @@ jobs: uses: actions/download-artifact@v4 with: name: scalafmt-x86_64-pc-linux - path: tmp/scalafmt + path: tmp/scalafmt-docker-build # Dockerfile uses this - name: Login to DockerHub uses: docker/login-action@v3 with: diff --git a/Dockerfile b/Dockerfile index 74dbb1f229..54ed267319 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM alpine -COPY tmp/scalafmt-linux-musl/scalafmt /bin/scalafmt +COPY tmp/scalafmt-docker-build/scalafmt /bin/scalafmt RUN chmod +x /bin/scalafmt ENTRYPOINT ["/bin/scalafmt"]