From 8338dde911cbea16bd06c6e1382c3d10926e140f Mon Sep 17 00:00:00 2001 From: Joeri van Arkel <98022003+joerivanarkel@users.noreply.github.com> Date: Wed, 18 May 2022 23:30:30 +0200 Subject: [PATCH] Delete .github/workflows directory --- .github/workflows/dotnet.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/dotnet.yml diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml deleted file mode 100644 index 3f18428..0000000 --- a/.github/workflows/dotnet.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: .NET - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Setup .NET - uses: actions/setup-dotnet@v2 - with: - dotnet-version: 5.0.x - - name: Restore dependencies - run: dotnet restore - - name: Build - run: dotnet build --no-restore - - nuget: - runs-on: ubuntu-18.04 - steps: - - name: Build solution and generate NuGet package - run: | - dotnet nuget push ./bin/Release/*.nupkg --api-key ${{secrets.TOKEN}} --source "https://api.nuget.org/v3/index.json" --skip-duplicate --no-symbols true