mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-09-01 05:45:06 +09:00
239add3ff1
* Implemented editorconfig * Switched to ESM * Switched to a TypeScript workflow * Switched to projen for project management * Major code refactor * TODO: need tests
12 lines
561 B
TypeScript
Generated
12 lines
561 B
TypeScript
Generated
/**
|
|
* When the GitHub Actions job is done, clean up any environment variables that
|
|
* may have been set by the configure-aws-credentials steps in the job.
|
|
*
|
|
* Environment variables are not intended to be shared across different jobs in
|
|
* the same GitHub Actions workflow: GitHub Actions documentation states that
|
|
* each job runs in a fresh instance. However, doing our own cleanup will
|
|
* give us additional assurance that these environment variables are not shared
|
|
* with any other jobs.
|
|
*/
|
|
export declare function cleanup(): Promise<void>;
|