Skip to content

Commit

Permalink
feat: setup semantic release
Browse files Browse the repository at this point in the history
  • Loading branch information
plexoos committed Apr 23, 2024
1 parent 23183af commit 83b20a0
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .releaserc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# See https://semantic-release.gitbook.io/semantic-release/usage/configuration
branches:
- main
tagFormat: '${version}' # without this, the tag is prefixed with a 'v'
plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- "@semantic-release/changelog"
- path: "@semantic-release/git"
assets:
- "CHANGELOG.md"
- "package.json"
message: "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
Empty file added CHANGELOG.md
Empty file.
23 changes: 23 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "esi-opticks",
"version": "0.0.0",
"description": "esi shell project",
"repository": {
"type": "git",
"url": "git+https://github.com/BNLNPPS/esi-opticks.git"
},
"keywords": [],
"author": "BNL NPPS",
"license": "MIT",
"bugs": {
"url": "https://github.com/BNLNPPS/esi-opticks/issues"
},
"homepage": "https://github.com/BNLNPPS/esi-opticks#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^13.0.0",
"semantic-release": "^23.0.8"
}
}

0 comments on commit 83b20a0

Please sign in to comment.