name: Upload Terraform infrastructure module description: "Upload the Terraform infrastructure module as an artifact." runs: using: "composite" steps: - name: Copy Terraform module shell: bash run: | cp -r terraform/infrastructure terraform-module - name: Zip terraform dir shell: bash run: | zip -r terraform-module.zip terraform-module - name: Upload artifact uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 with: name: terraform-module path: terraform-module.zip - name: Cleanup Terraform module dir shell: bash run: | rm -rf terraform-module terraform-module.zip