4 Commits

Author SHA1 Message Date
805d316240 chore(release): 1.14.0 [skip ci]
# [1.14.0](https://github.com/yanhao98/semantic-release-action-example/compare/v1.13.1...v1.14.0) (2024-10-16)

### Features

* **a(aa):** xxx ([67d4f92](67d4f921ee))
2024-10-16 16:06:19 +08:00
67d4f921ee feat(a(aa)): xxx 2024-10-16 16:05:54 +08:00
335af9b6cb chore(release): 1.13.1 [skip ci]
## [1.13.1](https://github.com/yanhao98/semantic-release-action-example/compare/v1.13.0...v1.13.1) (2024-10-11)

### Bug Fixes

* 更新CI工作流权限配置以支持发布和评论功能 ([e6514b7](e6514b76fd))
2024-10-11 16:40:04 +08:00
e6514b76fd fix: 更新CI工作流权限配置以支持发布和评论功能 2024-10-11 16:39:38 +08:00
4 changed files with 20 additions and 3 deletions

View File

@ -12,9 +12,11 @@ jobs:
next_release_published: ${{ steps.semantic.outputs.next_release_published }} next_release_published: ${{ steps.semantic.outputs.next_release_published }}
next_release_version: ${{ steps.semantic.outputs.next_release_version }} next_release_version: ${{ steps.semantic.outputs.next_release_version }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: # Job-level permissions configuration starts here permissions: # Job-level permissions configuration starts here
contents: write # 'write' access to repository contents
id-token: write id-token: write
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4

View File

@ -1,3 +1,17 @@
# [1.14.0](https://github.com/yanhao98/semantic-release-action-example/compare/v1.13.1...v1.14.0) (2024-10-16)
### Features
* **a(aa):** xxx ([67d4f92](https://github.com/yanhao98/semantic-release-action-example/commit/67d4f921ee07d91394e24b73b48007e6fc063f08))
## [1.13.1](https://github.com/yanhao98/semantic-release-action-example/compare/v1.13.0...v1.13.1) (2024-10-11)
### Bug Fixes
* 更新CI工作流权限配置以支持发布和评论功能 ([e6514b7](https://github.com/yanhao98/semantic-release-action-example/commit/e6514b76fd31e2d469a0f1d9f924f6edc38de669))
# [1.13.0](https://github.com/yanhao98/semantic-release-action-example/compare/v1.12.0...v1.13.0) (2024-10-11) # [1.13.0](https://github.com/yanhao98/semantic-release-action-example/compare/v1.12.0...v1.13.0) (2024-10-11)

View File

@ -0,0 +1 @@
feat(a(aa)): xxx

View File

@ -1,7 +1,7 @@
{ {
"name": "semantic-release-example-24", "name": "semantic-release-example-24",
"description": "An example project to demonstrate semantic-release", "description": "An example project to demonstrate semantic-release",
"version": "1.13.0", "version": "1.14.0",
"files": [ "files": [
"CHANGELOG.md" "CHANGELOG.md"
], ],