syntax Issue in gh actions build

This commit is contained in:
2022-05-18 22:10:32 +02:00
parent 9ace64832a
commit 12024df4d8
2 changed files with 6 additions and 9 deletions

View File

@@ -11,19 +11,15 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Get project version
id: step_one
run: |
version=$(git describe --tags --abbrev=0)
echo "project_version=$version" >> $GITHUB_ENV
- run: echo "project_version=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
- uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
with:
args: >
-Dsonar.projectVersion=${{ env.project_version }}
-Dsonar.python.version=3.10
with:
args: >
-Dsonar.projectVersion=${{ env.project_version }}
-Dsonar.python.version=3.10
# If you wish to fail your job when the Quality Gate is red, uncomment the
# following lines. This would typically be used to fail a deployment.
- uses: sonarsource/sonarqube-quality-gate-action@master