-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (40 loc) · 1.63 KB
/
deploy-nodejs-api-azure.yml
File metadata and controls
51 lines (40 loc) · 1.63 KB
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
name: Deploy NodeJS API to Azure Container App
# Controls when the workflow will run
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout to the branch
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to container registry
uses: docker/login-action@v1
with:
registry: bccrandomchallenges.azurecr.io
username: ${{ secrets.DOTNETAPI_REGISTRY_USERNAME }}
password: ${{ secrets.DOTNETAPI_REGISTRY_PASSWORD }}
- name: Build and push container image to registry
uses: docker/build-push-action@v2
with:
push: true
tags: bccrandomchallenges.azurecr.io/nodejsapi:${{ github.sha }}
file: ./nodejsLearn/Dockerfile
context: ./nodejsLearn/
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Azure Login
uses: azure/login@v1
with:
creds: ${{ secrets.DOTNETAPI_AZURE_CREDENTIALS }}
- name: Deploy to containerapp
uses: azure/CLI@v1
with:
inlineScript: |
az config set extension.use_dynamic_install=yes_without_prompt
az containerapp registry set -n nodejsapi -g BCC-Challenges --server bccrandomchallenges.azurecr.io --username ${{ secrets.DOTNETAPI_REGISTRY_USERNAME }} --password ${{ secrets.DOTNETAPI_REGISTRY_PASSWORD }}
az containerapp update -n nodejsapi -g BCC-Challenges --image bccrandomchallenges.azurecr.io/nodejsapi:${{ github.sha }} --set-env-vars DB_CONN_STR=secretref:pg-conn-str PORT=80