From da6d8029ef112de6329b3ac193dbfbd118b05ca1 Mon Sep 17 00:00:00 2001 From: ced777ric <44529860+ced777ric@users.noreply.github.com> Date: Wed, 14 Dec 2022 18:34:05 +0100 Subject: [PATCH] Delete dotnet-core-master.yml --- .github/workflows/dotnet-core-master.yml | 46 ------------------------ 1 file changed, 46 deletions(-) delete mode 100644 .github/workflows/dotnet-core-master.yml diff --git a/.github/workflows/dotnet-core-master.yml b/.github/workflows/dotnet-core-master.yml deleted file mode 100644 index 74b43dcc..00000000 --- a/.github/workflows/dotnet-core-master.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: .NET Core Master -on: - push: - branches: [ master ] - -jobs: - build: - runs-on: [self-hosted, windows] - steps: - - uses: actions/checkout@v2 - - uses: benjlevesque/short-sha@v1.2 - id: short-sha - with: - length: 6 - - name: Setup .NET Core - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 3.1.101 - - name: Setup Nuget - uses: nuget/setup-nuget@v1 - - - name: Download References - run: wget "https://cdn.cedmod.nl/files/References.zip" -outfile "References.zip" - - - name: Unzip References Zip - run: Expand-Archive References.zip -DestinationPath ./ - - - name: Set Commit Hash - run: echo ${{ steps.short-sha.outputs.sha }} > CedMod/version.txt - - - name: Restore Packages - run: nuget restore CedMod.sln - - name: Build - run: dotnet build --configuration Release --no-restore CedMod.sln - - name: Upload - uses: actions/upload-artifact@v2 - with: - name: CedMod Build Results - path: ${{ github.workspace }}/bin/Release/CedMod*.dll - - name: Release - uses: softprops/action-gh-release@v1 - with: - body_path: CHANGELOG.md - tag_name: ${{ steps.short-sha.outputs.sha }} - files: | - ${{ github.workspace }}/bin/Release/CedModV3.dll