From d8aa64e3ead7b6c1b53d3c6ed48cd6bcc7f1d315 Mon Sep 17 00:00:00 2001 From: Drew Weymouth Date: Thu, 23 Nov 2023 10:42:23 -0600 Subject: [PATCH] first draft adding rest of Windows GH Action --- .github/workflows/build-windows.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 41b5acc..0b2d98a 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -22,6 +22,7 @@ jobs: update: true install: >- wget + make - uses: actions/checkout@v3 - name: Set up Go @@ -39,3 +40,20 @@ jobs: - name: Install Fyne tool run: go install fyne.io/fyne/v2/cmd/fyne@latest + + - name: Package + run: make package_windows + + - name: Download mpv dll + run: > + wget https://github.com/dweymouth/supersonic/releases/download/v0.8.0/Supersonic-0.8.0-windows-x64.zip && + unzip Supersonic-0.8.0-windows-x64.zip + + - name: Generate zip bundle + run: zip Supersonic-windows.zip Supersonic.exe libmpv-2.dll + + - name: Upload artifact + uses: actions/upload-artifact@v3 + with: + name: Supersonic_windows_x64.zip + path: Supersonic-windows.zip