using non-zero exit code if app gets error #12
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: publish | |
on: | |
push: | |
branches: [ main ] | |
env: | |
DOTNET_VERSION: '6.0.401' # The .NET SDK version to use | |
jobs: | |
publish: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: | | |
cd SteamMarketeer | |
dotnet build --configuration Release --no-restore | |
dotnet publish --configuration Release --output output --framework net5.0 --runtime win-x64 --self-contained true /p:UseAppHost=true /p:PublishSingleFile=true /p:PublishReadyToRun=false /p:PublishTrimmed=false | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: steam-marketeer-release | |
path: | | |
${{ github.workspace }}\SteamMarketeer\output\* | |
!${{ github.workspace }}\SteamMarketeer\output\*.pdb | |