This commit is contained in:
Margarita Sanz 2022-05-02 18:32:32 +02:00 коммит произвёл GitHub
Родитель 5001f851a5
Коммит 28c697acee
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 54 добавлений и 0 удалений

54
.github/workflows/ado-contributions.yml поставляемый Normal file
Просмотреть файл

@ -0,0 +1,54 @@
name: "ADO Contributions"
on:
workflow_dispatch:
inputs:
resourceGroupName:
type: string
description: "Resource Group where infrastructure will be deployed/updated"
required: true
default: ""
jobs:
deploy_dashboard:
runs-on: windows-2022
name: "Dashboard Backend"
steps:
- name: "Checkout"
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Azure Login
uses: Azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
enable-AzPSSession: true
- name: "Deploy infrastructure"
id: rg
uses: azure/arm-deploy@v1
with:
deploymentName: ${{ github.event.inputs.resourceGroupName }}
resourceGroupName: ${{ github.event.inputs.resourceGroupName }}
template: ./dashboards/ADODashboard-Contributors/infrastructure/deploy.bicep
- name: "Replace tokens"
shell: pwsh
run: |
$ConvertTokenListFunctionInput = @{
FilePath = './dashboards/ADODashboard-Contributors/src/local.settings.json'
TokenName = '<<PAT>>'
TokenValue = '${{ secrets.PAT }}'
}
./tools/scripts/Convert-TokenInFile.ps1 @ConvertTokenListFunctionInput -Verbose
- name: "Deploy code"
shell: pwsh
run: |
# Initialize parameters
Install-Module -Name Az.Functions -Force
$functionApp = Get-AzFunctionApp -ResourceGroupName '${{ github.event.inputs.resourceGroupName }}'
$functionAppName = $functionApp[0].Name
$DeployFunctionInputs = @{
ResourceGroup = '${{ github.event.inputs.resourceGroupName }}'
FunctionAppName = $functionAppName
}
# Invoke Function
./tools/scripts/deploy-function.ps1 @DeployFunctionInputs -Verbose