Skip to content

Commit 4559f16

Browse files
committed
Add deployment conditions back in
1 parent b4210bb commit 4559f16

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/functionApp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: ./.github/workflows/_functionAppDeployTemplate.yml
2727
name: "Function App Deploy"
2828
needs: [function_test]
29-
# if: github.event_name == 'push' || github.event_name == 'release'
29+
if: github.event_name == 'push' || github.event_name == 'release'
3030
with:
3131
environment: "dev"
3232
python_version: "3.10"

.github/workflows/terraform.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
uses: ./.github/workflows/_terraformApplyTemplate.yml
4141
name: "Terraform Apply"
4242
needs: [terraform_plan_dev]
43-
# if: github.event_name == 'push' || github.event_name == 'release'
43+
if: github.event_name == 'push' || github.event_name == 'release'
4444
with:
4545
environment: "dev"
4646
terraform_version: "1.4.6"

0 commit comments

Comments
 (0)