Pack and upload artifacts for release builds #323
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: CI-Audit | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_GENERATE_ASPNET_CERTIFICATE: false | |
ContinuousIntegrationBuild: true | |
CiRunNumber: ${{ github.run_number }} | |
CiRunMainSuffix: ci${{ github.run_number }} | |
CiRunBranchSuffix: ${{ github.ref_name }}-${{ github.event_name }}-ci${{ github.run_number }} | |
jobs: | |
audit: | |
strategy: | |
fail-fast: false | |
matrix: | |
configuration: [debug, release] | |
os: [ubuntu-latest, windows-latest] | |
include: | |
- os: ubuntu-latest | |
test-filter: --filter TestCategory!=DriverDependent | |
- os: windows-latest | |
configuration: release | |
collect-packages: true | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.x | |
- name: Restore | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore --configuration ${{ matrix.configuration }} | |
- name: Test | |
run: dotnet test --no-build --configuration ${{ matrix.configuration }} ${{ matrix.test-filter }} | |
- name: Pack | |
id: pack | |
if: matrix.collect-packages | |
env: | |
CiBuildVersionSuffix: ${{ github.ref_name == 'main' && env.CiRunMainSuffix || env.CiRunBranchSuffix }} | |
run: dotnet pack --no-build --configuration ${{ matrix.configuration }} | |
- name: Collect packages | |
uses: actions/upload-artifact@v4 | |
if: matrix.collect-packages && steps.pack.outcome == 'success' && always() | |
with: | |
name: Packages | |
if-no-files-found: error | |
path: artifacts/package/${{matrix.configuration}}/** |