Merge branch 'dev'

This commit is contained in:
faris Aljohari
2025-03-11 15:33:52 +03:00
107 changed files with 7758 additions and 3568 deletions

View File

@ -11,7 +11,7 @@ on:
jobs:
build:
runs-on: "ubuntu-latest"
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v2
@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
needs: build
environment:
name: "staging"
name: 'staging'
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
steps:
@ -45,7 +45,7 @@ jobs:
id: deploy-to-webapp
uses: azure/webapps-deploy@v2
with:
app-name: "syncrow"
slot-name: "staging"
app-name: 'syncrow'
slot-name: 'staging'
publish-profile: ${{ secrets.AzureAppService_PublishProfile_44f7766441ec4796b74789e9761ef589 }}
images: "syncrow.azurecr.io/${{ secrets.AzureAppService_ContainerUsername_47395803300340b49931ea82f6d80be3 }}/syncrow/backend:${{ github.sha }}"
images: 'syncrow.azurecr.io/${{ secrets.AzureAppService_ContainerUsername_47395803300340b49931ea82f6d80be3 }}/syncrow/backend:${{ github.sha }}'