From 5ac272488056b1a2c8dd095e7fad393a1f5c0f18 Mon Sep 17 00:00:00 2001 From: Termina1 Date: Mon, 2 Oct 2023 17:11:04 +0300 Subject: [PATCH] fix github build --- .github/workflows/publish.yaml | 6 +++--- Makefile | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index e0b605420..1ca94a9bc 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 bdc2b0828..c10966c2e 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