forked from ali-sdk/ali-oss
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Added support for Node.js version 23 in the CI testing matrix. - **Bug Fixes** - Improved CI pipeline reliability by including the latest Node.js version for testing. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
- Loading branch information
Showing
3 changed files
with
25 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
export default { | ||
prefix: `${process.platform}-${process.version}-${new Date().getTime()}/`, | ||
oss: { | ||
accessKeyId: process.env.OSS_CLIENT_ID! || process.env.ALI_SDK_OSS_ID!, | ||
accessKeySecret: process.env.OSS_CLIENT_SECRET! || process.env.ALI_SDK_OSS_SECRET!, | ||
region: process.env.OSS_CLIENT_REGION || process.env.ALI_SDK_OSS_REGION, | ||
endpoint: process.env.OSS_CLIENT_ENDPOINT! || process.env.ALI_SDK_OSS_ENDPOINT!, | ||
bucket: process.env.OSS_CLIENT_BUCKET! || process.env.ALI_SDK_OSS_BUCKET!, | ||
accessKeyId: process.env.OSS_CLIENT_ID!, | ||
accessKeySecret: process.env.OSS_CLIENT_SECRET!, | ||
region: process.env.OSS_CLIENT_REGION!, | ||
endpoint: process.env.OSS_CLIENT_ENDPOINT!, | ||
bucket: process.env.OSS_CLIENT_BUCKET!, | ||
}, | ||
timeout: '120s', | ||
}; |