Compare commits

..

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

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

Loading…
Cancel
Save