[FileVersion] Add set site version policy commands #1496
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: Build Pull Request or Commit | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- dev | |
paths: | |
- 'src/**' | |
#push: | |
# branches: | |
# - dev | |
# paths: | |
# - 'src/**' | |
jobs: | |
build_dev_branch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout PnP.Framework | |
uses: actions/checkout@v3 | |
with: | |
repository: pnp/pnpframework | |
path: pnpframework | |
ref: 'dev' | |
- name: Checkout PnP.Core | |
uses: actions/checkout@v3 | |
with: | |
repository: pnp/pnpcore | |
path: pnpcore | |
ref: 'dev' | |
- name: Checkout PnP.PowerShell | |
uses: actions/checkout@v3 | |
with: | |
path: powershell | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
6.0.x | |
7.0.x | |
- name: Install PnP.Core dependencies | |
run: dotnet restore | |
working-directory: pnpcore/src/sdk | |
- name: Build PnP.Core | |
run: dotnet build --configuration Debug --no-restore -p:WarningLevel=0 | |
working-directory: pnpcore/src/sdk/PnP.Core | |
- name: Install PnP.Framework dependencies | |
run: dotnet restore -p:PnPCoreSdkPath="..\..\..\pnpcore\src\sdk\PnP.Core\bin\Debug\netstandard2.0\PnP.Core.dll" -p:PnPCoreSdkPathNet6="..\..\..\pnpcore\src\sdk\PnP.Core\bin\Debug\net6.0\PnP.Core.dll" -p:PnPCoreSdkPathNet7="..\..\..\pnpcore\src\sdk\PnP.Core\bin\Debug\net7.0\PnP.Core.dll" | |
working-directory: pnpframework/src/lib | |
- name: Build PnP.Framework | |
run: dotnet build --configuration Debug --no-restore -p:WarningLevel=0 -p:PnPCoreSdkPath="..\..\..\..\pnpcore\src\sdk\PnP.Core\bin\Debug\netstandard2.0\PnP.Core.dll" -p:PnPCoreSdkPathNet6="..\..\..\..\pnpcore\src\sdk\PnP.Core\bin\Debug\net6.0\PnP.Core.dll" -p:PnPCoreSdkPathNet7="..\..\..\..\pnpcore\src\sdk\PnP.Core\bin\Debug\net7.0\PnP.Core.dll" | |
working-directory: pnpframework/src/lib/PnP.Framework | |
- name: Install PnP.PowerShell dependencies | |
run: dotnet restore -p:PnPFrameworkPath="..\..\..\pnpframework\src\lib\" -p:PnPCoreSdkPath="..\..\..\pnpcore\src\sdk\" | |
working-directory: powershell/src | |
- name: Build PnP.PowerShell | |
run: dotnet build --configuration Debug --no-restore -p:PnPFrameworkPath="/home/runner/work/powershell/powershell/pnpframework/src/lib/" -p:PnPCoreSdkPath="/home/runner/work/powershell/powershell/pnpcore/src/sdk/" | |
working-directory: powershell/src |