Skip to content

Commit

Permalink
try to run deployment on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
andresmr committed Aug 3, 2023
1 parent fbec106 commit 0bf3b63
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,20 +71,19 @@ jobs:
run: ./gradlew assembleDebug

# Upload Artifact Build
# Noted For Output [main_project_module]/build/outputs/apk/debug/
- name: Upload APK Debug - ${{ env.repository_name }}
- name: Upload Android artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ env.repository_name }} - Android APK
path: ${{ env.main_project_module }}/build/outputs/apk/debug/

#Create binaries
- name: Create desktop binaries
- name: Create desktop jar for Windows
run: ./gradlew packageUberJarForCurrentOS

#Upload binaries artifact
- name: Upload a Build Artifact
- name: Upload Desktop artifacts
uses: actions/[email protected]
with:
name: ${{ env.repository_name }} - Desktop jar
path: ${{ github.workspace }}/desktop/build/compose/jars/mobile-ui-linux-x64-1.0.0.jar
name: ${{ env.repository_name }} - Desktop jar - Windows
path: ${{ github.workspace }}/desktop/build/compose/jars/mobile-ui-windows-x64-1.0.0.jar
1 change: 0 additions & 1 deletion desktop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ kotlin {
dependencies {
implementation(project(":common"))
implementation(compose.desktop.currentOs)
implementation(compose.desktop.windows_x64)
}
}
val jvmTest by getting
Expand Down

0 comments on commit 0bf3b63

Please sign in to comment.