Skip to content

Commit

Permalink
Fixing yml warinings
Browse files Browse the repository at this point in the history
  • Loading branch information
DemeSzabolcs committed Jul 5, 2024
1 parent 6ddf7b8 commit da5e836
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
with:
# Don't generate any symbol package because we're not including the Lombiq.Analyzers.dll in the NuGet package
# itself, either. See Invoke-BeforePack.ps1 for details.
dotnet-pack-include-symbols: "false"
dotnet-pack-include-symbols: 'false'
secrets:
API_KEY: ${{ secrets.DEFAULT_NUGET_PUBLISH_API_KEY }}
4 changes: 2 additions & 2 deletions .github/workflows/test-analysis-failure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Test Analysis Failure - NuGet PackageReference
uses: Lombiq/GitHub-Actions/.github/workflows/test-analysis-failure.yml@dev
with:
machine-types: "[\"ubuntu-latest\", \"windows-latest\"]"
machine-types: "['ubuntu-latest', 'windows-latest']"
build-directory: TestSolutions/Lombiq.Analyzers.PackageReference
timeout-minutes: 30
build-expected-code-analysis-errors: |
Expand All @@ -25,7 +25,7 @@ jobs:
name: Test Analysis Failure - Local ProjectReference
uses: Lombiq/GitHub-Actions/.github/workflows/test-analysis-failure.yml@dev
with:
machine-types: "[\"ubuntu-latest\", \"windows-latest\"]"
machine-types: "['ubuntu-latest', 'windows-latest']"
build-directory: TestSolutions/Lombiq.Analyzers.ProjectReference
timeout-minutes: 30
build-expected-code-analysis-errors: |
Expand Down

0 comments on commit da5e836

Please sign in to comment.