Skip to content

Commit 10166f4

Browse files
authored
VED-811: Prefix tfplan artifact name with environment & sub-environment. (#913)
1 parent 6a0d35a commit 10166f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy-backend.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
- name: Save Terraform Plan
8383
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
8484
with:
85-
name: tfplan
85+
name: ${{ env.ENVIRONMENT }}-${{ env.SUB_ENVIRONMENT }}-tfplan
8686
path: terraform/tfplan
8787

8888
terraform-apply:
@@ -107,7 +107,7 @@ jobs:
107107
- name: Retrieve Terraform Plan
108108
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
109109
with:
110-
name: tfplan
110+
name: ${{ env.ENVIRONMENT }}-${{ env.SUB_ENVIRONMENT }}-tfplan
111111
path: terraform
112112

113113
- name: Terraform Init

0 commit comments

Comments
 (0)