From cffd87924bcd1465079fcd8cad2162ddad66c568 Mon Sep 17 00:00:00 2001 From: Roman Langolf Date: Sun, 12 May 2024 15:48:05 +0700 Subject: [PATCH] fix docker build release --- .github/workflows/ci.yml | 3 +++ build.sbt | 1 + 2 files changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7608f68..34dce39 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -323,6 +323,9 @@ jobs: java: [temurin@21] runs-on: ${{ matrix.os }} steps: + - name: Checkout current branch (fast) + uses: actions/checkout@v4 + - name: Download command line linux build uses: actions/download-artifact@v4 with: diff --git a/build.sbt b/build.sbt index 513c51c..19d174e 100644 --- a/build.sbt +++ b/build.sbt @@ -157,6 +157,7 @@ ThisBuild / githubWorkflowGeneratedCI := (ThisBuild / githubWorkflowGeneratedCI) scalas = Nil, javas = List(JavaSpec.temurin("21")), steps = List( + WorkflowStep.Checkout, WorkflowStep.Use( name = Some("Download command line linux build"), ref = UseRef.Public("actions", "download-artifact", "v4"),