diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml new file mode 100644 index 0000000..91eaea2 --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -0,0 +1,20 @@ +name: Npm publish + +on: + release: + types: [published] + +jobs: + publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 12 + registry-url: https://registry.npmjs.org/ + - run: npm install + - run: npm run build + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 022d82d..918f1ad 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,5 @@ coverage/ .nyc_output/ .idea yarn.lock + +.claude/settings.local.json diff --git a/CHANGELOG.md b/CHANGELOG.md index db7318f..a8bb938 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## CHANGE LOG +## 7.15.2 +- 对象存储,修复 pfop pipeline 参数无效问题 + ## 7.15.1 - 对象存储,开放分片上传部分接口 diff --git a/package.json b/package.json index 4274e14..71d904c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "qiniu", - "version": "7.15.1", + "version": "7.15.2", "description": "Node wrapper for Qiniu Resource (Cloud) Storage API", "main": "index.js", "directories": {