Trigger auto deployment #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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=your_database_url | |
- name: Redeploy Azure Container App | |
run: | | |
az containerapp revision copy \ | |
--name krokelo \ | |
--resource-group sbu-public-krokelo-nww-nea-rg \ | |
--cpu 0.5 \ | |
--memory 1.0 \ | |
--image ${{ secrets.ACR_URL }}/krokelo:${{ github.sha }} |