mirror of
https://github.com/hashicorp/setup-terraform.git
synced 2025-12-24 20:27:06 +00:00
feat: add post-job step for cleaning temp dir
This commit is contained in:
parent
69c00852f1
commit
f6ec85149b
3 changed files with 54 additions and 0 deletions
11
README.md
11
README.md
|
|
@ -75,6 +75,15 @@ steps:
|
|||
- run: echo ${{ steps.plan.outputs.exitcode }}
|
||||
```
|
||||
|
||||
Temporary directory could be deleted after all steps by setting the `cleanup_workspace` variable to `true`:
|
||||
|
||||
```yaml
|
||||
steps:
|
||||
- uses: hashicorp/setup-terraform@v3
|
||||
with:
|
||||
cleanup_workspace: true
|
||||
```
|
||||
|
||||
Outputs can be used in subsequent steps to comment on the pull request:
|
||||
|
||||
> **Notice:** There's a limit to the number of characters inside a GitHub comment (65535).
|
||||
|
|
@ -254,6 +263,8 @@ The action supports the following inputs:
|
|||
- `terraform_wrapper` - (optional) Whether to install a wrapper to wrap subsequent calls of
|
||||
the `terraform` binary and expose its STDOUT, STDERR, and exit code as outputs
|
||||
named `stdout`, `stderr`, and `exitcode` respectively. Defaults to `true`.
|
||||
- `cleanup_workspace` - (optional) The Terraform binary file is downloaded to a temporary directory.
|
||||
This parameter will be used to clean that directory. Defaults to `true`.
|
||||
|
||||
## Outputs
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue