-
Notifications
You must be signed in to change notification settings - Fork 2
53 lines (44 loc) · 1.56 KB
/
deploy-backend.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Deploy Backend on Azure
on:
workflow_dispatch:
inputs:
environment_name:
description: "Environment Name"
required: true
default: ""
jobs:
Deploy-Backend:
environment:
name: ${{ github.event.inputs.environment_name }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_SERVICE_PRINCIPAL }}
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: Download Backend Artifact
uses: dawidd6/[email protected]
with:
workflow: build-backend.yml
name: savings-backend
branch: ${{ steps.extract_branch.outputs.branch }}
path: ./deploy
- name: Config Settings Substitution
uses: microsoft/variable-substitution@v1
with:
files: 'deploy/appsettings.json,deploy/appsettings.Development.json,deploy/appsettings.Production.json'
env:
ApiKeys: ${{ secrets.APPSERVICE_CONFIG_APIKEY }}
DatabasePath: 'Savings.db'
AuthenticationToUse: 'AzureAD'
IdentityProvider.Audience: ${{ vars.APPSERVICE_CONFIG_IDENTITY_AUDIENCE }}
IdentityProvider.Authority: ${{ vars.APPSERVICE_CONFIG_IDENTITY_AUTHORITY }}
- name: Deploy Backend
uses: azure/webapps-deploy@v2
with:
app-name: ${{ vars.APPSERVICENAME }}
package: ./deploy