ci(github-actions): use only .github/ for consistency, replace host secrets with vars
All checks were successful
Build, test and publish the Quarkus libraries / build (push) Successful in 2m29s

This commit is contained in:
Jorge Bornhausen 2024-11-26 13:26:11 +01:00
parent 2cdf40e136
commit e6b6d5f1e7
Signed by: jorge.bornhausen
SSH key fingerprint: SHA256:X2ootOwvCeP4FoNfmVUFIKIbhq95tAgnt7Oqg3x+lfs
2 changed files with 2 additions and 2 deletions

View file

@ -43,9 +43,9 @@ jobs:
if: vars.SONAR_ENABLED == 'true'
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
SONAR_HOST_URL: ${{ vars.SONAR_HOST_URL }}
run: ./mvnw org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=quarkus-commons -Dsonar.projectName='quarkus-commons' -Dsonar.coverage.jacoco.xmlReportPaths=../**/target/jacoco-report/jacoco.xml
- name: Upload libs to Gitea Maven Registry
if: gitea.ref == 'refs/heads/main'
if: github.ref == 'refs/heads/main'
run: ./mvnw deploy -Dmaven.test.skip=true -Dmaven.javadoc.skip=true