赞
踩
开源项目中,经常会碰到这样的问题,当发布一个版本的时候,我们需要手动修改版本号,然后添加更新日志,打标签,生成 release
这一系列步骤,稍微不注意,很容易出错并且增加维护成本。
这里给大家介绍如何自动发布版本的action。
首先在根目录 .github/workflows
下创建 release.yml
文件,并添加以下代码
on: push: branches: - master name: Release jobs: release-please: runs-on: ubuntu-latest steps: - uses: GoogleCloudPlatform/release-please-action@v3 id: release with: token: ${ { secrets.RELEASE_TOKEN }} release-type: node package-name: standard-version changelog-types: '[{"type": "types", "section":"Types", "hidden": false},{"type": "revert", "section":"Reverts", "hidden": false},{"type": "feat", "section": "Features
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。