Add /** to paths in three deploy YAML files

This commit is contained in:
John Skiles Skinner
2024-06-26 18:47:21 -07:00
parent 89365cd405
commit ea1dc14ab3
3 changed files with 6 additions and 6 deletions

View File

@@ -21,8 +21,8 @@ jobs:
uses: tj-actions/changed-files@v44
with:
files: |
terraform/demo
terraform/shared
terraform/demo/**
terraform/shared/**
.github/workflows/deploy-demo.yml
- name: Terraform init
if: steps.changed-terraform-files.outputs.any_changed == 'true'

View File

@@ -21,8 +21,8 @@ jobs:
uses: tj-actions/changed-files@v44
with:
files: |
terraform/production
terraform/shared
terraform/production/**
terraform/shared/**
.github/workflows/deploy-prod.yml
- name: Terraform init
if: steps.changed-terraform-files.outputs.any_changed == 'true'

View File

@@ -26,8 +26,8 @@ jobs:
uses: tj-actions/changed-files@v44
with:
files: |
terraform/staging
terraform/shared
terraform/staging/**
terraform/shared/**
.github/workflows/deploy.yml
- name: Terraform init
if: steps.changed-terraform-files.outputs.any_changed == 'true'