From e980c231779a8ca3ad9dc23f0929978fb05555e2 Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Sat, 21 Jan 2023 14:25:17 +0100 Subject: [PATCH] github action --- .github/workflows/all-ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/all-ci.yml b/.github/workflows/all-ci.yml index 883d76930..bf0872957 100644 --- a/.github/workflows/all-ci.yml +++ b/.github/workflows/all-ci.yml @@ -24,13 +24,15 @@ jobs: - name: Build and test with Gradle run: ./gradlew build env: - GRADLE_OPTS: -Dorg.gradle.daemon=false + GRADLE_OPTS: -Dorg.gradle.daemon=false - name: Create shadowJar run: ./gradlew shadowJar + env: + GRADLE_OPTS: -Dorg.gradle.daemon=false - - name: Create shadowJar artifact + - name: Create compiler shadowJar artifact uses: actions/upload-artifact@v3 with: name: shadowJar - path: build/libs/*-all.jar + path: compiler/build/libs/*-all.jar