Skip to content

Commit

Permalink
Add envs and split deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
PiotrWachulec committed Mar 15, 2024
1 parent 62ea042 commit b82b483
Showing 1 changed file with 45 additions and 30 deletions.
75 changes: 45 additions & 30 deletions .github/workflows/deploy-resource-group.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,41 +6,56 @@ permissions:
id-token: write
contents: read
jobs:
deploy:
deploy-dev:
environment: dev
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@main

- name: Checkout code
uses: actions/checkout@main
- name: Log into Azure
uses: azure/login@v1
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
enable-AzPSSession: true

- name: Log into Azure
uses: azure/login@v1
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
enable-AzPSSession: true
- name: Deploy DEV resource group
uses: azure/powershell@v1
with:
inlineScript: |
$ParamsDev = @{
TemplateFilePath = "./src/infra/resourceGroup.bicep"
TemplateParameterFilePath = "./src/infra/resourceGroup.dev.bicepparam"
}
- name: Deploy DEV resource group
uses: azure/powershell@v1
with:
inlineScript: |
$ParamsDev = @{
TemplateFilePath = "./src/infra/resourceGroup.bicep"
TemplateParameterFilePath = "./src/infra/resourceGroup.dev.bicepparam"
}
./src/scripts/Deploy-ToSubscription.ps1 @ParamsDev
azPSVersion: "11.4.0"

./src/scripts/Deploy-ToSubscription.ps1 @ParamsDev
azPSVersion: "11.4.0"
deploy-prd:
environment: prd
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@main

- name: Log into Azure
uses: azure/login@v1
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
enable-AzPSSession: true

- name: Deploy PROD resource group
uses: azure/powershell@v1
with:
inlineScript: |
$ParamsProd = @{
TemplateFilePath = "./src/infra/resourceGroup.bicep"
TemplateParameterFilePath = "./src/infra/resourceGroup.prd.bicepparam"
}
- name: Deploy PROD resource group
uses: azure/powershell@v1
with:
inlineScript: |
$ParamsProd = @{
TemplateFilePath = "./src/infra/resourceGroup.bicep"
TemplateParameterFilePath = "./src/infra/resourceGroup.prd.bicepparam"
}
./src/scripts/Deploy-ToSubscription.ps1 @ParamsProd
azPSVersion: "11.4.0"
./src/scripts/Deploy-ToSubscription.ps1 @ParamsProd
azPSVersion: "11.4.0"

0 comments on commit b82b483

Please sign in to comment.