Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 1.37 KB

readme.md

File metadata and controls

35 lines (23 loc) · 1.37 KB

Azure GitHub Actions and Workflows

With the GitHub Actions azlogin and azdeploy you will be able to deploy resources in Azure.

Quickstart

  1. Clone this repository.
  2. Create following secrets in your repository
  • clientIdRequired
  • clientSecretRequired
  • tenantIdRequired
  • subscriptionIdRequired
  1. Change the parameters in your parameters.json.

  2. You might change following variables in your GitHub workflow deploy.yml

    resourceGroupName: "rg-storage"
    resourceGroupLocation: "westeurope"

  3. Commit your changes and your GitHub Workflow will start to run.

Note
You can create get the above details by running following command in your Azure environment (details)

az ad sp create-for-rbac --name "<spName>" --role contributor --scopes /subscriptions/<subscriptionId> --sdk-auth

References

segraef/azlogin

segraef/azdeploy