Skip to content

Commit

Permalink
Add Compose packaging option and update auto-merge workflow build tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
mbakgun committed Nov 15, 2024
1 parent 4664c80 commit ab7af80
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Auto Merge Pull Requests
name: Auto Merge Pull Requests Checks
on:
pull_request:
branches:
Expand All @@ -24,10 +24,10 @@ jobs:
java-version: '11'

- name: Build Web Application
run: ./gradlew :composeApp:wasmJsBrowserDevelopmentRun
run: ./gradlew :composeApp:wasmBrowserDevelopmentExecutableDistribution

- name: Build Desktop Application
run: ./gradlew :composeApp:run
run: ./gradlew :composeApp:packageDistributionForCurrentOS

- name: Automatically Merge Dependabot PRs
if: success()
Expand Down
5 changes: 4 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@ kotlin.code.style=official
kotlin.daemon.jvmargs=-Xmx2048M

#Gradle
org.gradle.jvmargs=-Xmx2048M -Dfile.encoding=UTF-8
org.gradle.jvmargs=-Xmx2048M -Dfile.encoding=UTF-8

#Compose
compose.desktop.packaging.checkJdkVendor=false

0 comments on commit ab7af80

Please sign in to comment.