Skip to content

Commit

Permalink
add steps on github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
andresmr committed Aug 2, 2023
1 parent f0d8f59 commit 7d24b1a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,14 @@ jobs:
with:
name: ${{ env.date_today }} - ${{ env.playstore_name }} - ${{ env.repository_name }} - APK(s) debug generated
path: ${{ env.main_project_module }}/build/outputs/apk/debug/

#Create binaries
- name: Create desktop binaries
run: ./gradlew createDistributable

#Upload binaries artifact
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
name: my-artifact
path: ${{ github.workspace }}/desktop/build/compose/binaries/main/app
2 changes: 1 addition & 1 deletion desktop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ compose.desktop {
application {
mainClass = "MainKt"
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb, TargetFormat.Exe)
packageName = "mobile-ui"
packageVersion = "1.0.0"
}
Expand Down

0 comments on commit 7d24b1a

Please sign in to comment.