Skip to content

Commit aff9a57

Browse files
committed
fix the value of ALIBABA_CLOUD_ACCESS_KEY_SECRET was wrong
1 parent 5c3845d commit aff9a57

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/utils.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ export function exportEnvs(accessKeyId: string, accessKeySecret: string, securit
1616
core.exportVariable('ALIBABA_CLOUD_ACCESS_KEY_ID', accessKeyId);
1717
core.exportVariable('ALICLOUD_ACCESS_KEY', accessKeyId);
1818
core.exportVariable('ALIBABACLOUD_ACCESS_KEY_ID', accessKeyId);
19-
core.exportVariable('ALIBABA_CLOUD_ACCESS_KEY_SECRET', accessKeyId);
19+
20+
core.exportVariable('ALIBABA_CLOUD_ACCESS_KEY_SECRET', accessKeySecret);
2021
core.exportVariable('ALICLOUD_SECRET_KEY', accessKeySecret);
2122
core.exportVariable('ALIBABACLOUD_ACCESS_KEY_SECRET', accessKeySecret);
23+
2224
core.exportVariable('ALIBABA_CLOUD_SECURITY_TOKEN', securityToken);
2325
core.exportVariable('ALICLOUD_ACCESS_KEY_STS_TOKEN', securityToken);
2426
core.exportVariable('ALIBABACLOUD_SECURITY_TOKEN', securityToken);

0 commit comments

Comments
 (0)