GitHub Action to setup the Bicep CLI
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Setup Bicep
uses: anthony-c-martin/[email protected]
- name: Build Bicep
run: bicep build ./path/to/main.bicep
on:
push:
branches: [ main ]
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Setup Bicep
uses: anthony-c-martin/[email protected]
- name: Azure CLI Login
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Build Bicep
# path to your checked-in .bicep file to deploy
run: bicep build ./path/to/main.bicep
- uses: azure/arm-deploy@v1
with:
# set to your subscriptionId
subscriptionId: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
# set to your resource group name
resourceGroupName: my-rg
# should match the .bicep file path but with .json extension
template: ./path/to/main.json
# path to your checked-in parameters file to deploy
parameters: ./path/to/parameters.json
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Setup Bicep
uses: anthony-c-martin/[email protected]
with:
# must be a version listed under https://github.com/Azure/bicep/releases
version: v0.2.212
- name: Build Bicep
run: bicep build ./path/to/main.bicep