mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
a8101c8c64
Co-authored-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
17 lines
445 B
YAML
17 lines
445 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@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
|
|
with:
|
|
name: terraform-logs-${{ inputs.artifactNameSuffix }}
|
|
path: terraform.log
|