All Notebooks updated to v3.0 of Accelerator using LangGraph #19
This file contains 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: Compile bicep to ARM | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- '**.bicep' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Bicep build | |
run: | | |
curl -Lo bicepinstall https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64 | |
chmod +x ./bicepinstall | |
sudo mv ./bicepinstall /usr/local/bin/bicep | |
bicep --help | |
- name: Run Bicep build | |
run: | | |
bicep build azuredeploy.bicep | |
bicep build apps/backend/azuredeploy-backend.bicep | |
bicep build apps/frontend/azuredeploy-frontend.bicep | |
ls -l *.json | |
- uses: EndBug/[email protected] | |
with: | |
author_name: github-actions | |
author_email: '41898282+github-actions[bot]@users.noreply.github.com' | |
message: Update ARM template to match Bicep |