Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast authored Oct 15, 2024
1 parent 2bb0990 commit f090e46
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: MimeKit CI/CD Pipeline
:name: MimeKit CI/CD Pipeline

on: [push, pull_request, workflow_dispatch]

Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
continue-on-error: true
shell: pwsh
run: |
dotnet msbuild $env:SOLUTION_PATH -property:Platform=$env:BUILD_PLATFORM -property:Configuration=$env:BUILD_CONFIGURATION -property:MonoRuntime=$IS_UBUNTU
dotnet msbuild $env:SOLUTION_PATH -property:Platform=$env:BUILD_PLATFORM -property:Configuration=$env:BUILD_CONFIGURATION -property:MonoRuntime=$env:IS_UBUNTU
env:
IS_UBUNTU: ${{ steps.configure.outputs.is_ubuntu }}

Expand All @@ -157,8 +157,8 @@ jobs:
shell: pwsh
run: |
echo "BUILD_CONFIGURATION=$env:BUILD_CONFIGURATION"
echo "GENERATE_CODE_COVERAGE=$GENERATE_CODE_COVERAGE"
& ./scripts/test.ps1 -Configuration:$env:BUILD_CONFIGURATION -GenerateCodeCoverage:$GENERATE_CODE_COVERAGE
echo "GENERATE_CODE_COVERAGE=$env:GENERATE_CODE_COVERAGE"
& ./scripts/test.ps1 -Configuration:$env:BUILD_CONFIGURATION -GenerateCodeCoverage:$env:GENERATE_CODE_COVERAGE
env:
GENERATE_CODE_COVERAGE: ${{ steps.configure.outputs.generate_code_coverage }}

Expand Down

0 comments on commit f090e46

Please sign in to comment.