-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (43 loc) · 1.32 KB
/
deploy.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
name: Trigger auto deployment
on:
push:
branches: [main]
# Allow manual trigger
workflow_dispatch:
permissions:
id-token: write
contents: read
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout to the branch
uses: actions/checkout@v2
- name: Docker Login
uses: docker/login-action@v3
with:
registry: ${{ secrets.ACR_URL }}
username: ${{ secrets.ACR_USERNAME }}
password: ${{ secrets.ACR_PASSWORD }}
- name: Azure Login
uses: azure/login@v2
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
- name: Build and Push to ACR
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ secrets.ACR_URL }}/krokelo:${{ github.sha }}
file: Dockerfile
build-args: |
DATABASE_URL=${{ secrets.DATABASE_URL }}
- name: Redeploy Azure Container App
run: |
az containerapp revision copy \
--name krokelo \
--resource-group sbu-public-krokelo-nww-nea-rg \
--cpu 1 \
--memory 2.0 \
--image ${{ secrets.ACR_URL }}/krokelo:${{ github.sha }}