Add Expiration field to output

This commit is contained in:
Michael Lehmann
2025-04-24 14:14:16 -07:00
committed by kellertk
parent bd4992e70f
commit 431bb0e5e3
2 changed files with 5 additions and 2 deletions
+3
View File
@@ -38,6 +38,9 @@ export function exportCredentials(creds?: Partial<Credentials>, outputCredential
if (creds?.SessionToken) {
core.setOutput('aws-session-token', creds.SessionToken);
}
if (creds?.Expiration) {
core.setOutput('aws-expiration', creds.Expiration);
}
}
}