diff options
author | Linnea Gräf <nea@nea.moe> | 2024-10-31 22:49:44 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-10-31 23:20:24 +0100 |
commit | 653454e290a1bb6142e2bb40947239c2e450820b (patch) | |
tree | 063175796d2038e9626836705100c554bf47babc /.github | |
parent | 7a5335756960d77ca4d12cf49b59ea273b5a8f64 (diff) | |
download | Firmament-653454e290a1bb6142e2bb40947239c2e450820b.tar.gz Firmament-653454e290a1bb6142e2bb40947239c2e450820b.tar.bz2 Firmament-653454e290a1bb6142e2bb40947239c2e450820b.zip |
Force even earlier init of unpacked Jars
[no changelog]
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b048e5b..123893a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,7 +25,10 @@ jobs: - name: Set up gradle cache uses: gradle/actions/setup-gradle@v3 - name: Build with gradle - run: ./gradlew clean test remapJar --stacktrace + run: | + ./gradlew clean + ./gradlew unpackAllJars --stacktrace + ./gradlew test remapJar --stacktrace - name: Upload build artifact uses: actions/upload-artifact@v3 with: |