-
Notifications
You must be signed in to change notification settings - Fork 470
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
automation flow for one click deployment
- Loading branch information
1 parent
7268e9e
commit 93b9f4e
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Deploy Azure Resources | ||
|
||
on: | ||
push: | ||
branches: | ||
- PSL-Automation-7724 | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Azure CLI | ||
run: | | ||
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash | ||
az --version # Verify installation | ||
- name: Login to Azure | ||
run: | | ||
az login --service-principal -u ${{ secrets.AUTO_AZURE_CLIENT_ID }} -p ${{ secrets.AUTO_AZURE_CLIENT_SECRET }} --tenant ${{ secrets.AUTO_AZURE_TENANT_ID }} | ||
az account set --subscription ${{ secrets.AUTO_AZURE_SUBSCRIPTION_ID }} | ||
- name: Install Bicep CLI | ||
run: az bicep install | ||
|
||
- name: Deploy Bicep Template | ||
id: deploy | ||
run: | | ||
set -e | ||
az deployment sub create \ | ||
--name autoDemo \ | ||
--location eastus \ | ||
--template-file infra/main.bicep \ | ||
--parameters environmentName=pslautomation2 location=eastus2 |