We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44bd527 commit 2c619d9Copy full SHA for 2c619d9
.github/workflows/dotnet-reusable-workflow.yml
@@ -56,9 +56,9 @@ jobs:
56
run: |
57
shopt -s nocasematch
58
if [[ "${{ inputs.runs-on }}" == *"windows"* ]]; then
59
- echo "::set-output LC_COVERAGE_EXCLUDE_CLASS_FILTER=-*.Linux.*"
+ echo "LC_COVERAGE_EXCLUDE_CLASS_FILTER=-*.Linux.*" >> "$GITHUB_ENV"
60
elif [[ "${{ inputs.runs-on }}" == *"ubuntu"* ]]; then
61
- echo "::set-output LC_COVERAGE_EXCLUDE_CLASS_FILTER=-*.Windows.*"
+ echo "LC_COVERAGE_EXCLUDE_CLASS_FILTER=-*.Windows.*" >> "$GITHUB_ENV"
62
fi
63
shell: bash
64
0 commit comments