Skip to content

Instantly share code, notes, and snippets.

@vikramopala
vikramopala / gist:ea82641901b190af2182503cb451c0a9
Last active October 27, 2023 17:51
To create a GitHub Actions pipeline for deploying Azure Bicep templates
To create a GitHub Actions pipeline for deploying Azure Bicep templates, you'll need to define a YAML workflow file in your GitHub repository. Below is an example of a GitHub Actions pipeline that deploys a Bicep template to an Azure resource group. You can customize this template to fit your specific needs, including multiple environments (Dev, Test, Prod) and other configurations.
name: Deploy Bicep Template
on:
push:
branches:
- main # Customize to match your branch name
jobs: