Windows workflow task added

This commit is contained in:
KR Tirtho 2022-01-17 14:03:20 +06:00
parent fbdad1ad6d
commit 633ca2d267
2 changed files with 15 additions and 1 deletions

View File

@ -35,5 +35,16 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: subosito/flutter-action@v2 - uses: subosito/flutter-action@v2
- shell: powershell
- run: flutter config --enable-windows-desktop - run: flutter config --enable-windows-desktop
- run: flutter build windows - run: flutter build windows
- run: curl -o installer.exe https://jrsoftware.org/download.php/is.exe
- run: ./installer.exe /verysilent /allusers /dir=iscc
- run: & ./iscc/iscc.exe scripts/windows-setup-creator.iss
- run: rm -recurse iscc
- run: rm installer.exe
- uses: actions/upload-artifact@v2
with:
name: Spotube-Linux-Bundle
path: build/installer/Spotube-windows-x86_64-setup.exe

3
.gitignore vendored
View File

@ -59,3 +59,6 @@ app.*.map.json
/.flatpak /.flatpak
/.flatpak-builder /.flatpak-builder
/iscc
installer.exe