Restructured the Sdk.props file to help narrow down the debug type is… #5
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) | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_NOLOGO: true | |
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} | |
BUILD_RERUN_COUNT: ${{ github.run_attempt }} | |
steps: | |
- uses: actions/checkout@main | |
- name: Install latest .NET SDK | |
uses: Elskom/setup-latest-dotnet@main | |
- name: Restore, Build, and pack | |
uses: Elskom/build-dotnet@main | |
with: | |
TEST: false | |
PACK: true | |
PUSH: true |