From 58ed7e44eee996b922fd57ba3676097d43cdd5ad Mon Sep 17 00:00:00 2001 From: Karl Essinger Date: Sat, 5 Feb 2022 20:17:21 +0100 Subject: [PATCH] Delete dotnet-core.yml --- .github/workflows/dotnet-core.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/dotnet-core.yml diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml deleted file mode 100644 index 17d16052..00000000 --- a/.github/workflows/dotnet-core.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Smod build - -on: [push, pull_request] - -jobs: - build: - - runs-on: windows-latest - - steps: - - uses: actions/checkout@v2.2.0 - - - name: Setup .NET Core - uses: actions/setup-dotnet@v1.5.0 - with: - dotnet-version: 3.1 - - - name: Install dependencies - run: dotnet restore - - - name: Build - run: dotnet publish -c Release -o "${{github.workspace}}/Release" - - - name: Upload a Build Artifact - uses: actions/upload-artifact@v2.0.1 - with: - name: Smod - path: ${{github.workspace}}/Release