We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38d8ec9 commit 7a35b4cCopy full SHA for 7a35b4c
.github/workflows/publish-artifacts.yml
@@ -40,6 +40,10 @@ jobs:
40
with:
41
java-version: '11'
42
distribution: temurin
43
+
44
+ - name: Setup sbt launcher
45
+ uses: sbt/setup-sbt@v1
46
47
- name: publish docs
48
shell: 'script -q -e -c "bash {0}"'
49
run: echo "Hello World" && ./mill -i publishDocs
build.mill
@@ -889,7 +889,7 @@ def publishExecutable() = {
889
)
890
upload(
891
uploadedFile = os.temp(
892
- os.read(os.pwd / "amm-template.sh")
+ os.read(Task.workspace / "amm-template.sh")
893
.replace("DEFAULT_AMM_VERSION=", s"DEFAULT_AMM_VERSION=$latestTaggedVersion")
894
.replace("DEFAULT_SCALA_VERSION=", s"DEFAULT_SCALA_VERSION=$scalaBinaryVersion")
895
),
0 commit comments