From 666349f7034f10c29176cc78ca1eadfd54de544b Mon Sep 17 00:00:00 2001 From: Ammar Qaffaf Date: Mon, 8 Jul 2024 13:24:41 +0300 Subject: [PATCH] Add or update the App Service deployment workflow configuration from Azure Portal. --- .github/workflows/main_syncrow(staging).yml | 51 +++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/main_syncrow(staging).yml diff --git a/.github/workflows/main_syncrow(staging).yml b/.github/workflows/main_syncrow(staging).yml new file mode 100644 index 0000000..92c569f --- /dev/null +++ b/.github/workflows/main_syncrow(staging).yml @@ -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 }}' \ No newline at end of file