Reputation: 8563
I do get the following error while running my Github action
Failed step "verifyConditions" of plugin "@semantic-release/apm"
commitlink.config.ts
module.exports = {
extends: ['@commitlint/config-conventional'],
}
package.json
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/apm-config": "^9.0.1",
"husky": "^9.0.11",
"semantic-release": "^23.0.8"
},
"release": {
"extends": "@semantic-release/apm-config"
},
ci.yml
- name: release
run: npx semantic-release --branches main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Does anybody have an idea where the problem is?
Upvotes: 0
Views: 39