feat: add skip cleanup option (#1716)

Closes #1545
This commit is contained in:
Tom Keller
2026-04-03 15:00:34 -07:00
committed by GitHub
parent 51635dbf41
commit 11b1c58b24
2 changed files with 11 additions and 0 deletions
+10
View File
@@ -172,6 +172,16 @@ Sometimes, existing credentials in your runner can get in the way of the
intended outcome. You can set the `unset-current-credentials` input to `true` to intended outcome. You can set the `unset-current-credentials` input to `true` to
work around this issue. work around this issue.
#### Skip the cleanup step
By default, this action runs a post-job cleanup step that removes credentials
from the environment. To skip this step, set the `AWS_SKIP_CLEANUP_STEP`
environment variable to `true`:
```yaml
env:
AWS_SKIP_CLEANUP_STEP: 'true'
```
#### Use an HTTP proxy #### Use an HTTP proxy
If need use an HTTP proxy you can set it in the action manually. Additionally If need use an HTTP proxy you can set it in the action manually. Additionally
+1
View File
@@ -5,6 +5,7 @@ runs:
using: node24 using: node24
main: dist/index.js main: dist/index.js
post: dist/cleanup/index.js post: dist/cleanup/index.js
post-if: env.AWS_SKIP_CLEANUP_STEP != 'true'
branding: branding:
color: orange color: orange
icon: cloud icon: cloud