alioss-tool
v1.0.3
Published
基于`ali-oss`封装的cli,用于在ci中上传文件到阿里云oss
Downloads
6
Readme
Alioss-cli
基于ali-oss
封装的cli,用于在ci中上传文件到阿里云oss
安装
npm i
使用说明
npx alioss-tool upload-dir -h
Jenkins 示例
stage('Upload to CDN') {
def accessKeyId = '******'
def accessKeySecret = '******'
def source_dir = 'dist'
def target_dir = 'oss_bucket_path'
def bucket = 'oss_bucket'
def region = 'oss-region'
nodejs(nodeJSInstallationName: 'NodeJS-16') {
sh "npx alioss-tool upload-dir '$source_dir' '$target_dir' -k '$accessKeyId' -s '$accessKeySecret' -b '$bucket' -r '$region'"
}
}