зеркало из
1
0
Форкнуть 0

added parameters before deployment

This commit is contained in:
Marvin Buss 2020-09-23 18:05:54 +02:00
Родитель 904a13a660
Коммит b586021722
1 изменённых файлов: 9 добавлений и 1 удалений

10
.github/workflows/dataDomainDeployment.yml поставляемый
Просмотреть файл

@ -191,7 +191,7 @@ jobs:
az logout
deployment:
needs: [ check-resource-group, validation ]
needs: [ prerequisite, validation ]
runs-on: ubuntu-latest
if: github.event_name == 'push'
@ -201,6 +201,14 @@ jobs:
id: checkout_repository
uses: actions/checkout@v2
# Update parameter files
- name: Update Parameter files
id: update_parameter_files
run: |
echo "Updating value in parameter file"
pwsh $GITHUB_WORKSPACE/code/UpdateJson.ps1 -FilePaths $GITHUB_WORKSPACE/infra/SqlServer/params.sqlServer001.json -ParameterName administratorLoginPassword -ParameterValue ${{ needs.prerequisite.outputs.password }}
pwsh $GITHUB_WORKSPACE/code/UpdateJson.ps1 -FilePaths $GITHUB_WORKSPACE/infra/SqlDataWarehouse/params.sqlDataWarehouse001.json -ParameterName sqlServerAdministratorLoginPassword -ParameterValue ${{ needs.prerequisite.outputs.password }}
# Login to Azure
- name: Azure Login
id: azure_login