Bump peter-evans/create-pull-request from 7 to 8 #58
Workflow file for this run
This file contains hidden or 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: Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '9.x' | |
| - name: Run dotnet build ForEditing | |
| run: | | |
| dotnet build ForEditing.fsproj | |
| - name: Run dotnet build ForPublishing | |
| # build target frameworks net48 and net7.0 separately to avoid race conditions in combineIntoOneFile.fsx | |
| run: | | |
| dotnet build ForPublishing.fsproj --framework net48 | |
| dotnet build ForPublishing.fsproj --framework net7.0 | |