Skip to content

Bump peter-evans/create-pull-request from 7 to 8 #58

Bump peter-evans/create-pull-request from 7 to 8

Bump peter-evans/create-pull-request from 7 to 8 #58

Workflow file for this run

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