Skip to content

Commit

Permalink
Why on earth did I do this?!
Browse files Browse the repository at this point in the history
  • Loading branch information
soup-bowl committed Nov 17, 2024
1 parent 2be58ac commit 78c529a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 7 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/build-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,6 @@ jobs:
steps:
- name: Checkout Codebase
uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: sonarsource/sonarqube-scan-action@v3
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}

- name: Login to GitHub CR
uses: docker/login-action@v3
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/sonarqube.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: SonarQube Analysis

on:
push:
branches:
- main
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Codebase
uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: sonarsource/sonarqube-scan-action@v3
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}

0 comments on commit 78c529a

Please sign in to comment.