Skip to content

Commit

Permalink
🚀 Add workflow for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasBernard03 committed Sep 21, 2024
1 parent f5172ee commit 4c0049a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 16 deletions.
25 changes: 23 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- main

jobs:
build:
macos:
runs-on: macos-13
steps:
- name: Checkout source code
Expand All @@ -24,5 +24,26 @@ jobs:
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: macos-build
name: macos
path: /Users/runner/work/AndroidTools/AndroidTools/composeApp/build/compose/binaries/main/dmg

windows:
runs-on: windows-latest
steps:
- name: Checkout source code
uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'

- name: Build the app
run: ./gradlew packageMsi

- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: windows
path: D:\a\AndroidTools\AndroidTools\composeApp\build\compose\binaries\main\msi\fr.thomasbernard03.androidtools-1.0.0.msi
14 changes: 0 additions & 14 deletions appcast.xml

This file was deleted.

0 comments on commit 4c0049a

Please sign in to comment.