Skip to content

Azure/bicep-build-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

💪 Bicep Build Action Build

GitHub Action that builds a Bicep main file and outputs a generated ARM Template file.

When to use

The action is particularly useful for Continuous Integration scenarios where you want to validate the ARM template further on your workflow and/or publish it as an artifact.

Getting Started

Prerequisites

If your GitHub Actions workflows are running on a self-hosted runner:

  • Azure CLI 2.20.0 or later installed
  • File write permission on the runner as this action creates an ARM template file dynamically.

Usage

steps:
  - name: Bicep Build
    uses: Azure/bicep-build-action@v1.0.0
    with:
      bicepFilePath: main.bicep
      outputFilePath: azuredeploy.json

Inputs

Name Description Required Default value
bicepFilePath Bicep main file path false ./main.bicep
outputFilePath Path where the ARM template file will be created false ./azuredeploy.json

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repositories using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.