Thanks to visit codestin.com
Credit goes to github.com

Skip to content

fix: devcontainer

fix: devcontainer #99

Workflow file for this run

name: Deploy to Azure
on:
push:
branches:
- main
concurrency:
group: deployment
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout the project
uses: actions/checkout@v4
- name: Login to Azure
run: .azure/setup.sh --ci-login
env:
AZURE_CREDENTIALS: ${{ secrets.AZURE_CREDENTIALS }}
- name: Update infrastructure
run: .azure/infra.sh update
- name: Build project
run: .azure/build.sh
- name: Deploy project
run: .azure/deploy.sh