From 2d0797973e497af7ae834bb1277aaaebf272e00a Mon Sep 17 00:00:00 2001 From: LoveSy Date: Tue, 10 Jan 2023 23:38:31 +0800 Subject: [PATCH] Fix dependencies build --- .github/workflows/core.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index 031261e5..cbc40877 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -58,11 +58,13 @@ jobs: cd libxposed git clone https://github.com/libxposed/api.git cd api + echo 'org.gradle.jvmargs=-Xmx2048m' >> gradle.properties ./gradlew :api:publishApiPublicationToMavenLocal cd .. git clone https://github.com/libxposed/service.git cd service - ./gradlew :interface:publishApiPublicationToMavenLocal + echo 'org.gradle.jvmargs=-Xmx2048m' >> gradle.properties + ./gradlew :interface:publishInterfacePublicationToMavenLocal cd ../.. env: ORG_GRADLE_PROJECT_signingKey: ${{ secrets.maven_pgp_signingKey }}