diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7b5b061..0665afe 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,7 +17,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 - name: Run check - run: ./gradlew --project-dir plugin-build check + run: ./gradlew --project-dir plugin-build check --no-daemon - name: Publish on Plugin Portal - run: ./gradlew --project-dir plugin-build setupPublishSecrets publishPlugins + run: ./gradlew --project-dir plugin-build setupPublishSecrets publishPlugins --no-daemon if: success() diff --git a/gradle.properties b/gradle.properties index 709fbf8..0816a44 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ kotlin.code.style=official -org.gradle.jvmargs=-Xms256m -Xmx1024m +org.gradle.jvmargs=-Xms256m -Xmx2048m diff --git a/plugin-build/gradle.properties b/plugin-build/gradle.properties index c183c76..f6e6320 100644 --- a/plugin-build/gradle.properties +++ b/plugin-build/gradle.properties @@ -5,4 +5,6 @@ DISPLAY_NAME=Sheet Happens DESCRIPTION=Gradle plugin for generating Android / KMP string translations from Google Spreadsheets WEBSITE=https://github.com/futuredapp/sheet-happens VCS_URL=https://github.com/futuredapp/sheet-happens -IMPLEMENTATION_CLASS=app.futured.sheethappens.plugin.SheetHappensPlugin \ No newline at end of file +IMPLEMENTATION_CLASS=app.futured.sheethappens.plugin.SheetHappensPlugin + +org.gradle.jvmargs=-Xms256m -Xmx2048m \ No newline at end of file