diff --git a/.github/workflows/prepare_release.yml b/.github/workflows/prepare_release.yml deleted file mode 100644 index 2b69effa4fc..00000000000 --- a/.github/workflows/prepare_release.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: FAKE Prepare Release - -# this workflow will build the project, run tests for final check, and prepare artifacts for a release. The intention is to run it on push on master - -on: - push: - branches: [ release/next ] - -jobs: - build: - runs-on: windows-latest - steps: - - uses: actions/checkout@v2 - - name: Setup .NETCORE 3.1 - uses: actions/setup-dotnet@v1 - with: - dotnet-version: '3.1.x' - - name: Setup .NET 6 - uses: actions/setup-dotnet@v1 - with: - dotnet-version: '6.0.100-preview.3.21202.5' - - uses: actions/cache@v2 - with: - path: ~/.nuget/packages - key: windows-latest-nuget-${{ hashFiles('**/paket.lock') }} - restore-keys: | - windows-latest-nuget - - name: Restore dotnet tools - run: dotnet tool restore - - name: remove current fake runner tool - run: dotnet tool uninstall fake-cli - - name: Build fake runner - run: dotnet pack --version-suffix 1 src/app/fake-cli/fake-cli.fsproj - - name: add fake runner as a tool - run: dotnet tool install fake-cli --add-source "./src/app/fake-cli/bin/Debug" --version 1.0.0-1 - - name: Build - run: dotnet fake build -t Release_BuildAndTest --parallel 3 - - name: publish build artifacts - uses: actions/upload-artifact@v2 - with: - name: fake-artifacts - path: release/artifacts