Add or update the App Service deployment workflow configuration from Azure Portal.

This commit is contained in:
Ammar Qaffaf
2024-07-08 13:24:41 +03:00
parent ce4869aa5d
commit 666349f703

View File

@ -0,0 +1,51 @@
# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
# More GitHub Actions for Azure: https://github.com/Azure/actions
name: Build and deploy container app to Azure Web App - syncrow(staging)
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to registry
uses: docker/login-action@v2
with:
registry: https://syncrow.azurecr.io/
username: ${{ secrets.AzureAppService_ContainerUsername_15b75a01524a445888d33b3385de56f4 }}
password: ${{ secrets.AzureAppService_ContainerPassword_f1031a6373bf42c19e9d10cf5b73192b }}
- name: Build and push container image to registry
uses: docker/build-push-action@v3
with:
push: true
tags: syncrow.azurecr.io/${{ secrets.AzureAppService_ContainerUsername_15b75a01524a445888d33b3385de56f4 }}/backend:${{ github.sha }}
file: ./Dockerfile
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: 'staging'
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
steps:
- name: Deploy to Azure Web App
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: 'syncrow'
slot-name: 'staging'
publish-profile: ${{ secrets.AzureAppService_PublishProfile_a045b3d0b9f54251b6470cab2a3f18ad }}
images: 'syncrow.azurecr.io/${{ secrets.AzureAppService_ContainerUsername_15b75a01524a445888d33b3385de56f4 }}/backend:${{ github.sha }}'