diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index e0b60542..1ca94a9b 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -39,10 +39,10 @@ jobs: with: distribution: 'zulu' java-version: 20 - - name: Build zip + - name: Setup gradle uses: gradle/gradle-build-action@v2 - with: - arguments: distZip + - name: Build zip + run: make distZip - name: Upload Release id: upload-release-asset uses: svenstaro/upload-release-action@v1-release diff --git a/Makefile b/Makefile index bdc2b082..c10966c2 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,9 @@ jib: build-foundation jib-docker: build-foundation ./gradlew jibDockerBuild -Pdocker=drpcorg +disZip: build-foundation + ./gradlew disZip + clean: ./gradlew clean; cd foundation && ../gradlew clean \ No newline at end of file