v1.9.9 #45

Merged
jamie merged 3 commits from v1.9.9 into main 2026-04-29 22:59:58 +01:00
Showing only changes of commit 5850898d5b - Show all commits
+29 -1
View File
@@ -8,6 +8,7 @@ on:
jobs: jobs:
release: release:
name: Build & Release
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'v') if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'v')
runs-on: build-htz-01 runs-on: build-htz-01
steps: steps:
@@ -43,4 +44,31 @@ jobs:
name: ${{ steps.get_version.outputs.VERSION }} name: ${{ steps.get_version.outputs.VERSION }}
body: ${{ steps.changelog.outputs.changelog }} body: ${{ steps.changelog.outputs.changelog }}
draft: false draft: false
prerelease: false prerelease: false
sonarqube:
name: SonarQube
runs-on: build-htz-01
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create Valid Project Key
id: sonar_setup
run: |
CLEAN_KEY=$(echo "${{ gitea.repository }}" | tr '/' ':')
echo "key=$CLEAN_KEY" >> $GITHUB_OUTPUT
- name: SonarQube Scan
uses: sonarsource/sonarqube-scan-action@master
continue-on-error: true
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
with:
args: >
-Dsonar.projectKey=${{ steps.sonar_setup.outputs.key }}
-Dsonar.projectName=${{ gitea.repository }}
-Dsonar.qualitygate.wait=true