Compare commits

..

No commits in common. 'master' and 'v1.2' have entirely different histories.
master ... v1.2

@ -4,31 +4,33 @@ inputs:
github-token: github-token:
description: '' description: ''
default: '' default: ''
fetch-depth:
description: ''
default: 1
runs: runs:
using: "composite" using: "composite"
steps: steps:
- uses: actions/checkout@v4 - name: Checkout Repository
uses: actions/checkout@v2
with: with:
submodules: 'recursive' submodules: 'recursive'
fetch-depth: ${{inputs.fetch-depth}}
- uses: actions/setup-dotnet@v4 - name: Setup .NET Core 3.1
uses: actions/setup-dotnet@master
with:
dotnet-version: 3.1.x
- name: Setup .NET 5
uses: actions/setup-dotnet@master
with: with:
dotnet-version: | dotnet-version: 5.0.x
6.x.x
7.x.x
8.x.x
- uses: fabriciomurta/ensure-nuget-source@v1 - name: Ensure NuGet Source
uses: fabriciomurta/ensure-nuget-source@v1
with: with:
name: 'nuget.org' name: 'nuget.org'
url: 'https://api.nuget.org/v3/index.json' url: 'https://api.nuget.org/v3/index.json'
- uses: actions/setup-dotnet@v4 - name: Setup BUTR GPR
uses: actions/setup-dotnet@master
with: with:
source-url: https://nuget.pkg.github.com/BUTR/index.json source-url: https://nuget.pkg.github.com/BUTR/index.json
env: env:

Loading…
Cancel
Save