Skip to content

Update README.md

Update README.md #36

name: Trigger auto deployment for klerly-backend
# When this action will be executed
on:
# Automatically trigger it when detected changes in repo
push:
branches:
[ main ]
paths:
- '**'
- '.github/workflows/klerly-backend-AutoDeployTrigger-a07b00da-22fc-43fc-8ffc-b11177c525fe.yml'
# Allow mannually trigger
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install -r requirements.txt
- run: sh test.sh
build:
runs-on: ubuntu-latest
needs: test
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.KLERLYBACKEND_REGISTRY_USERNAME }}
password: ${{ secrets.KLERLYBACKEND_REGISTRY_PASSWORD }}
- name: Build and push container image to registry
uses: docker/build-push-action@v2
with:
push: true
tags: ojetokun/klerly-backend:${{ github.sha }}
file: ./Dockerfile
context: ./
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Azure Login
uses: azure/login@v1
with:
creds: ${{ secrets.KLERLYBACKEND_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 klerly-backend -g Klerly --server docker.io --username ${{ secrets.KLERLYBACKEND_REGISTRY_USERNAME }} --password ${{ secrets.KLERLYBACKEND_REGISTRY_PASSWORD }}
az containerapp update -n klerly-backend -g Klerly --image ojetokun/klerly-backend:${{ github.sha }}