This commit is contained in:
parent
2e30e6b98d
commit
81a5fc1b42
1 changed files with 5 additions and 3 deletions
|
@ -11,8 +11,10 @@ jobs:
|
||||||
with:
|
with:
|
||||||
dotnet-version: 7.0
|
dotnet-version: 7.0
|
||||||
- run: |
|
- run: |
|
||||||
echo $SONARPROJECTKEY
|
export SONAR_TOKEN = ${{secrets.SONAR_TOKEN}}
|
||||||
echo $SONAR_PROJECT_KEY
|
export SONAR_PROJECT_KEY = ${{secrets.SONAR_PROJECT_KEY}}
|
||||||
echo $PATH
|
export SONAR_HOST_URL = ${{secrets.SONAR_HOST_URL}}
|
||||||
|
export IS_LOCAL_BUILD = ${{secrets.IS_LOCAL_BUILD}}
|
||||||
|
export SUPPORTS_DOCKER = ${{secrets.SUPPORTS_DOCKER}}
|
||||||
chmod +x ./build.sh
|
chmod +x ./build.sh
|
||||||
./build.sh --verbose --root .
|
./build.sh --verbose --root .
|
||||||
|
|
Loading…
Reference in a new issue