-
Notifications
You must be signed in to change notification settings - Fork 1.1k
60 lines (48 loc) · 1.81 KB
/
angular-jumpstart-api-AutoDeployTrigger-aadaf67b-44be-4e1b-952f-e7688098b8cb.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
54
55
56
57
58
59
60
name: Trigger auto deployment for angular-jumpstart-api
# When this action will be executed
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, closed]
branches:
- main
# Allow mannually trigger
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout to the branch
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to container registry
uses: docker/login-action@v1
with:
registry: docker.io
username: ${{ secrets.ANGULARJUMPSTARTAPI_REGISTRY_USERNAME }}
password: ${{ secrets.ANGULARJUMPSTARTAPI_REGISTRY_PASSWORD }}
- name: Build and push container image to registry
uses: docker/build-push-action@v2
with:
push: true
tags: danwahlin/node-service-jumpstart:${{ github.sha }}
file: ./.docker/node.dockerfile
context: ./
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Azure Login
uses: azure/login@v1
with:
creds: ${{ secrets.ANGULARJUMPSTARTAPI_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 angular-jumpstart-api -g Angular-Jumpstart-RG --server docker.io --username ${{ secrets.ANGULARJUMPSTARTAPI_REGISTRY_USERNAME }} --password ${{ secrets.ANGULARJUMPSTARTAPI_REGISTRY_PASSWORD }}
az containerapp update -n angular-jumpstart-api -g Angular-Jumpstart-RG --image danwahlin/node-service-jumpstart:${{ github.sha }}