Merge pull request #2115 from WolvenKit/2114-better-long-path-warning #2720
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: check-only | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
jobs: | |
desktop-win: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.x | |
- name: Publish with Dotnet | |
run: dotnet publish .\WolvenKit\WolvenKit.csproj -o .\publish -c Release -p:DebugType=None -p:DebugSymbols=false | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: wolvenkit-desktop | |
path: .\publish | |
console-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.x | |
- name: Restore dependencies | |
run: dotnet restore ./WolvenKit.CLI/WolvenKit.CLI.csproj | |
- name: Build | |
run: dotnet build ./WolvenKit.CLI/WolvenKit.CLI.csproj --no-restore -p:DebugType=None -p:DebugSymbols=false |