Skip to content

Commit

Permalink
Restore exe build in Windows workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
toasterofbread committed Aug 17, 2024
1 parent d008040 commit 6527d44
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,17 @@ jobs:
- name: Set up Gradle
uses: gradle/gradle-build-action@v3

- name: Build zip
run: .\gradlew.bat desktopApp:packageReleaseZip
- name: Build zip and exe
run: .\gradlew.bat desktopApp:packageReleaseZip desktopApp:packageReleaseExe

- name: Upload zip artifact
uses: actions/upload-artifact@v3
with:
name: spmp-windows-release
name: spmp-windows-release-zip
path: desktopApp/build/outputs/*.zip

- name: Upload exe artifact
uses: actions/upload-artifact@v3
with:
name: spmp-windows-release-exe
path: desktopApp/build/compose/binaries/main-release/exe/*.exe

0 comments on commit 6527d44

Please sign in to comment.