Update App Service Plan SKU to F1 and add Always On parameter (#158) #27
This file contains hidden or 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: Deploy Azure Infrastructure | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - infra/** | |
| - .github/workflows/infra.yml | |
| jobs: | |
| deploy: | |
| permissions: | |
| id-token: write | |
| runs-on: ubuntu-latest | |
| environment: Development | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 1 | |
| lfs: false | |
| submodules: false | |
| clean: true | |
| - name: Azure CLI Login | |
| uses: azure/login@v3 | |
| with: | |
| client-id: ${{ secrets.AZURE_CLIENT_ID }} | |
| tenant-id: ${{ secrets.AZURE_TENANT_ID }} | |
| subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
| - name: Deploy Bicep template | |
| run: | | |
| az deployment sub create --name dep-projectestimate-dev --location swedencentral --template-file ./infra/main.bicep --parameters environment=Dev |