mirror of
https://github.com/yanhao98/semantic-release-action-example.git
synced 2025-07-12 13:40:48 +08:00
24 lines
877 B
YAML
24 lines
877 B
YAML
---
|
|
plugins:
|
|
- "@semantic-release/commit-analyzer"
|
|
- "@semantic-release/release-notes-generator"
|
|
- "@semantic-release/changelog"
|
|
# #############################
|
|
# https://github.com/semantic-release/npm?tab=readme-ov-file#environment-variables
|
|
# #############################
|
|
- - "@semantic-release/npm"
|
|
# [provenance](https://docs.npmjs.com/generating-provenance-statements#using-third-party-package-publishing-tools)
|
|
- npmPublish: true
|
|
# #############################
|
|
# https://github.com/semantic-release/github?tab=readme-ov-file#configuration
|
|
# #############################
|
|
- "@semantic-release/github"
|
|
- - "@semantic-release/git"
|
|
- message: |-
|
|
chore(release): ${nextRelease.version} [skip ci]
|
|
|
|
${nextRelease.notes}
|
|
- - "@semantic-release/exec"
|
|
- prepareCmd: echo 'prepareCmd'
|
|
publishCmd: echo 'publishCmd'
|