From 1e9556cccd2b52f391c55d980f920b77dea572f0 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 15 May 2024 18:29:17 -0700 Subject: [PATCH] zip artifacts terraform files - fix --- .github/workflows/cicd-pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cicd-pipeline.yml b/.github/workflows/cicd-pipeline.yml index fbb130d..10e0799 100644 --- a/.github/workflows/cicd-pipeline.yml +++ b/.github/workflows/cicd-pipeline.yml @@ -184,7 +184,7 @@ jobs: mkdir -p build/${{ steps.poetry-build.outputs.tf_module_artifact_name }} cp terraform/* build/${{ steps.poetry-build.outputs.tf_module_artifact_name }}/ cd build - zip ${{ steps.poetry-build.outputs.tf_module_artifact_name }}.zip ${{ steps.poetry-build.outputs.tf_module_artifact_name }}/* -r + zip ${{ steps.poetry-build.outputs.tf_module_artifact_name }}.zip ${{ steps.poetry-build.outputs.tf_module_artifact_name }}/* -r -j - uses: actions/upload-artifact@v4 with: name: ${{ steps.poetry-build.outputs.tf_module_artifact_name }}