-
Notifications
You must be signed in to change notification settings - Fork 2
59 lines (49 loc) · 1.56 KB
/
update.yaml
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
name: Update a deployment to Azure Container Apps
on:
push:
branches:
[ main ]
paths:
- 'src/**'
pull_request:
branches: [ main ]
paths:
- 'src/**'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
DOCKER_REPO: bjd145
CONTAINER_NAME: simple
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:
username: ${{ secrets.SIMPLE_REGISTRY_USERNAME }}
password: ${{ secrets.SIMPLE_REGISTRY_PASSWORD }}
- name: Build and push container image to registry
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ env.DOCKER_REPO }}/${{ env.CONTAINER_NAME }}:${{ github.sha }}
file: src/dockerfile
context: src
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Azure Login
uses: azure/login@v1
with:
creds: ${{ secrets.SIMPLE_AZURE_CREDENTIALS }}
- name: Deploy to containerapp
uses: azure/CLI@v1
with:
inlineScript: |
az config set extension.use_dynamic_install=yes_without_prompt
az containerapp update -n ${{ secrets.CONTAINER_APP_NAME }} -g ${{ secrets.CONTAINER_APP_RG }} --image ${{ env.DOCKER_REPO }}/${{ env.CONTAINER_NAME }}:${{ github.sha }}