constellation/.github/actions/upload_terraform_logs/action.yml
Moritz Sanft 261fe611a9
ci: add Terraform logging (#1665)
* enable Terraform logging

* change to debug level

* rename artifact

* add name suffix

* remove blank line
2023-04-27 14:03:49 +02:00

17 lines
402 B
YAML

name: Upload Terraform logs
description: "Upload the Terraform log file as an artifact."
inputs:
artifactNameSuffix:
description: "Name suffix for the created artifact."
required: true
runs:
using: "composite"
steps:
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: terraform-logs-${{ inputs.artifactNameSuffix }}
path: terraform.log