Skip to content

Commit

Permalink
fix: Run Build with skipped codeql (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
samtrion authored Jan 1, 2025
1 parent fccd7eb commit eb6bda6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/cicd-dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,12 @@ jobs:

build:
name: Build
if: ${{ !cancelled() && !failure() }}
uses: ./.github/workflows/step-dotnet-build.yml
needs:
- tests
- format
- codeql
with:
disablePublish: ${{ inputs.disablePublish || false }}
dotnet-logging: ${{ inputs.dotnet-logging || 'quiet' }}
Expand All @@ -151,7 +153,6 @@ jobs:
uses: ./.github/workflows/step-dependabot-merge.yml
needs:
- build
- codeql
secrets: inherit

publish-nuget:
Expand All @@ -160,7 +161,6 @@ jobs:
uses: ./.github/workflows/step-dotnet-publish-nuget.yml
needs:
- build
- codeql
secrets: inherit

release:
Expand All @@ -169,7 +169,6 @@ jobs:
needs:
- version
- build
- codeql
- publish-nuget
uses: ./.github/workflows/step-dotnet-draft-release.yml
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/local-pr-testprojects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
with:
enableCleanUpDockerDocker: true
enableSonarQube: false
disableCodeQL: true
dotnet-version: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
dotnet-quality: ${{ vars.NE_DOTNET_QUALITY }}
solution: ./testprojects/HealthChecks.sln
Expand Down

0 comments on commit eb6bda6

Please sign in to comment.