mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-31 09:43:23 -05:00
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
|