Update 2.4 (Desktop) Patch 2 #40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Requirement check for merges with main. | |
on: | |
pull_request: | |
branches: | |
- release/desktop | |
jobs: | |
build-and-test: | |
runs-on: windows-latest | |
name: Release build and test | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
global-json-file: global.json | |
- name: Build application | |
run: dotnet build dirs.proj -c Release | |
- name: Test application | |
run: dotnet test dirs.proj --no-build -c Release --verbosity normal | |
verify-squirrel-release: | |
runs-on: windows-latest | |
name: Verify squirrel release process | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
global-json-file: global.json | |
- name: Run SquirrelBuildAndRelease | |
run: installer\Tools\SquirrelBuildAndRelease.ps1 | |
shell: powershell | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
path: releases/WoWsShipBuilderSetup.exe | |
retention-days: 5 |