Publish local Zinc

This commit is contained in:
Adrien Piquerez 2024-03-06 14:02:21 +01:00
parent c6176342fb
commit 1a900ee5dc
1 changed files with 7 additions and 1 deletions

View File

@ -77,7 +77,7 @@ jobs:
uses: actions/checkout@v3
with:
repository: sbt/zinc
ref: develop
ref: wip/sbt-2.x
path: zinc
- name: Setup JDK
uses: actions/setup-java@v3
@ -104,6 +104,12 @@ jobs:
rm -rf "$HOME/.sbt/scripted/" || true
rm -rf "$HOME/.ivy2/local" || true
rm -r $(find $HOME/.sbt/boot -name "*-SNAPSHOT") || true
- name: Publish local Zinc
shell: bash
run: |
./sbt -v lowerUtils/publishLocal
cd zinc/
sbt publishLocal
- name: Build and test (1)
if: ${{ matrix.jobtype == 1 }}
shell: bash