1.0.3 • Published 10 months ago

alioss-tool v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

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'"
    }
}
1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago