From c9b3a889a57d13a29a5a628ab4f3d48f97630ce4 Mon Sep 17 00:00:00 2001 From: Vitaly Mikhailov Date: Sat, 24 Sep 2022 01:14:43 +0300 Subject: [PATCH] Delete setup-common.yml --- .github/workflows/setup-common.yml | 38 ------------------------------ 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/setup-common.yml diff --git a/.github/workflows/setup-common.yml b/.github/workflows/setup-common.yml deleted file mode 100644 index 1bff491..0000000 --- a/.github/workflows/setup-common.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Common Setup - -on: - workflow_call: - inputs: - fetch-depth: - required: false - type: number - default: 1 - -jobs: - setup-common: - name: Common Setup - runs-on: ubuntu-latest - steps: - - name: Checkout Repository - uses: actions/checkout@v2 - with: - submodules: 'recursive' - fetch-depth: ${{ inputs.fetch-depth }} - - - name: Setup .NET 6 - uses: actions/setup-dotnet@master - with: - dotnet-version: 6.x.x - - - name: Ensure NuGet Source - uses: fabriciomurta/ensure-nuget-source@v1 - with: - name: 'nuget.org' - url: 'https://api.nuget.org/v3/index.json' - - - name: Setup BUTR GPR - uses: actions/setup-dotnet@master - with: - source-url: https://nuget.pkg.github.com/BUTR/index.json - env: - NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}