initial port to .net 8 #808
Workflow file for this run
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: Rectify11 | ||
on: | ||
workflow_dispatch: | ||
push: | ||
pull_request: | ||
workflow_run: | ||
workflows: ["Submodules Sync"] | ||
types: | ||
- completed | ||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
env: | ||
NUGET_CERT_REVOCATION_MODE: offline | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
submodules: recursive | ||
lfs: true | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: '8.0.x' | ||
- name: Restore NuGet Packages | ||
run: nuget restore Rectify11Installer.sln | ||
- name: Build | ||
run: dotnet publish Rectify11Installer.sln --artifacts-path Rectify11Installer\bin\output\Release\ | ||
- name: Upload Rectify11Installer | ||
uses: actions/[email protected] | ||
with: | ||
name: Rectify11Installer (x64) | ||
path: Rectify11Installer\bin\output\Release\Rectify11Installer.exe | ||
compression-level: 0 |