Skip to content

Fix Some Group Filter Jank #103

Fix Some Group Filter Jank

Fix Some Group Filter Jank #103

Workflow file for this run

name: Build Daily
on:
push:
branches:
- master
# pull_request:
# branches: [ master ]
jobs:
build:
runs-on: windows-latest
name: Shoko Desktop daily build
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
steps:
- uses: actions/checkout@master
with:
submodules: recursive
- name: Setup MSBuild Path
uses: warrenbuckley/Setup-MSBuild@v1
- name: Setup NuGet
uses: NuGet/[email protected]
- name: Restore NuGet Packages
run: nuget restore Shoko.Desktop.sln
- name: Build
run: msbuild Shoko.Desktop.sln /p:Configuration=Release /p:DeployOnBuild=true /p:PublishProfile=FolderProfile
- name: Upload Artifact
uses: actions/[email protected]
with:
name: ShokoDesktop
path: Shoko.Desktop\bin\Release
- name: Archive Release
shell: pwsh
run: Compress-Archive .\\Shoko.Desktop\\bin\\Release .\\ShokoDesktop.zip
- name: Upload Daily to shokoanime.com
shell: pwsh
env:
FTP_USERNAME: ${{ secrets.FTP_USERNAME }}
FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }}
FTP_SERVER: ${{ secrets.FTP_SERVER }}
run : .\\.github\\workflows\\UploadArchive.ps1