Compare commits

..

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

@ -4,31 +4,25 @@ 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
with: uses: actions/checkout@v2
submodules: 'recursive'
fetch-depth: ${{inputs.fetch-depth}}
- uses: actions/setup-dotnet@v4 - name: Setup .NET Core 3.1
uses: actions/setup-dotnet@master
with: with:
dotnet-version: | dotnet-version: 3.1.x
6.x.x
7.x.x
8.x.x
- uses: fabriciomurta/ensure-nuget-source@v1 - name: Setup .NET 5
uses: actions/setup-dotnet@master
with: with:
name: 'nuget.org' dotnet-version: 5.0.x
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