From dc60dcb80a62942f34038ca7839dd132b67ac21f Mon Sep 17 00:00:00 2001 From: deMD Date: Fri, 15 Oct 2021 15:46:15 +0200 Subject: [PATCH] Delete umb9.yml --- .github/workflows/umb9.yml | 80 -------------------------------------- 1 file changed, 80 deletions(-) delete mode 100644 .github/workflows/umb9.yml diff --git a/.github/workflows/umb9.yml b/.github/workflows/umb9.yml deleted file mode 100644 index 9f38c0b..0000000 --- a/.github/workflows/umb9.yml +++ /dev/null @@ -1,80 +0,0 @@ -name: Umbraco 9 build - -on: - - push: - - branches: - - - master - -env: - - solution: '**/*.sln' - - buildPlatform: Any CPU - - buildConfiguration: Release - -jobs: - - build: - - runs-on: windows-latest - - steps: - - - uses: actions/checkout@v2 - - run: | - git fetch --prune --unshallow - - - uses: microsoft/setup-msbuild@v1.0.2 - - - name: Install GitVersion - - uses: gittools/actions/gitversion/setup@v0.9.7 - - with: - - versionSpec: 5.x - - - uses: gittools/actions/gitversion/execute@v0.9.7 - - with: - - configFilePath: src/UmbracoContentApi.Core/GitVerion.yml - - - uses: nuget/setup-nuget@v1 - - - run: nuget restore ${{ env.solution }} - - - run: msbuild '${{ env.solution }}' /p:configuration='${{ env.buildConfiguration }}' /p:platform='${{ env.buildPlatform }}' /p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="${{ github.workspace }}" - - - run: | - - $vsTestConsoleExe = "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\Extensions\TestPlatform\vstest.console.exe" - - $targetTestDll = "" - - $testRunSettings = "/Settings:`"`" " - - #Note that the `" is an escape character to quote strings, and the `& is needed to start the command - - $command = "`& `"$vsTestConsoleExe`" `"$targetTestDll`" $testRunSettings $parameters " - - Write-Host "$command" - - Invoke-Expression $command - - shell: powershell - - - run: nuget pack - - - uses: actions/upload-artifact@v2 - - with: - - path: ${{ github.workspace }} - - name: drop - \ No newline at end of file