Bump Microsoft.DotNet.Arcade.Sdk from 8.0.0-beta.24426.2 to 8.0.0-beta.24606.1 #579
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: .NET Core (build pull request) | |
on: [pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_NOLOGO: true | |
BUILD_RERUN_COUNT: ${{ github.run_attempt }} | |
steps: | |
- uses: actions/checkout@main | |
- name: Install latest .NET SDK | |
uses: Elskom/setup-latest-dotnet@main | |
with: | |
SDK_VERSION: '8.0.100' | |
RUNTIME_VERSIONS: '' | |
- name: Restore, Build, and pack | |
uses: Elskom/build-dotnet@main | |
with: | |
RESTORE: false | |
- name: Clean up temp installer files. | |
run: | | |
del artifacts/packages/Release/Shipping/*.wixpdb | |
del artifacts/packages/Release/Shipping/*-runtime-*.* | |
del artifacts/packages/Release/Shipping/*-targeting-pack-*.* | |
shell: pwsh | |
- name: Upload artifacts | |
uses: actions/upload-artifact@main | |
with: | |
name: Shipping-${{ runner.os }} | |
path: artifacts/packages/Release/Shipping/* | |
- name: Upload binlog on failure. | |
uses: actions/upload-artifact@main | |
if: ${{ failure() }} | |
with: | |
name: msbuild.binlog | |
path: msbuild.binlog |