mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-18 10:57:13 -05:00
261fe611a9
* enable Terraform logging * change to debug level * rename artifact * add name suffix * remove blank line
17 lines
402 B
YAML
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
|