-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestapp-AutoDeployTrigger-357c76cf-b889-4323-88ac-32a0e984f09e.yml
More file actions
60 lines (48 loc) · 1.72 KB
/
testapp-AutoDeployTrigger-357c76cf-b889-4323-88ac-32a0e984f09e.yml
File metadata and controls
60 lines (48 loc) · 1.72 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
52
53
54
55
56
57
58
59
60
name: Trigger auto deployment for testapp
# When this action will be executed
on:
# Automatically trigger it when detected changes in repo
push:
branches:
[ master ]
paths:
- '**'
- '.github/workflows/testapp-AutoDeployTrigger-357c76cf-b889-4323-88ac-32a0e984f09e.yml'
# 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.TESTAPP_REGISTRY_USERNAME }}
password: ${{ secrets.TESTAPP_REGISTRY_PASSWORD }}
- name: Build and push container image to registry
uses: docker/build-push-action@v2
with:
push: true
tags: test/testapp:${{ github.sha }}
file: ./Dockerfile
context: ./
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Azure Login
uses: azure/login@v1
with:
creds: ${{ secrets.TESTAPP_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 testapp -g testrg --server docker.io --username ${{ secrets.TESTAPP_REGISTRY_USERNAME }} --password ${{ secrets.TESTAPP_REGISTRY_PASSWORD }}
az containerapp update -n testapp -g testrg --image test/testapp:${{ github.sha }}