Skip to content

Commit

Permalink
Merge pull request #14 from atc-net/feature/sonarcloud.token
Browse files Browse the repository at this point in the history
sonar.login is deprecated - switching to sonar.token
  • Loading branch information
perkops authored May 7, 2024
2 parents bcfeca6 + d5f8c4f commit 220d5af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/post-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ jobs:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
shell: pwsh
run: |
dotnet sonarscanner begin /k:"atc-net_atc-hosting" /o:"atc-net" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
dotnet sonarscanner begin /k:"atc-net_atc-hosting" /o:"atc-net" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io"
dotnet build -c Release /p:UseSourceLink=true --no-restore
dotnet sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"
dotnet sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}"
- name: ⏩ Merge to stable-branch
run: |
Expand Down

0 comments on commit 220d5af

Please sign in to comment.