Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase heap size, run release without daemon #16

Merged
merged 1 commit into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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()
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
kotlin.code.style=official
org.gradle.jvmargs=-Xms256m -Xmx1024m
org.gradle.jvmargs=-Xms256m -Xmx2048m
4 changes: 3 additions & 1 deletion plugin-build/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
IMPLEMENTATION_CLASS=app.futured.sheethappens.plugin.SheetHappensPlugin

org.gradle.jvmargs=-Xms256m -Xmx2048m
Loading