Skip to content

Commit

Permalink
ci: new versioning tool
Browse files Browse the repository at this point in the history
  • Loading branch information
vpctorr committed Feb 20, 2022
1 parent da08ee8 commit bb33d41
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 3 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
on:
push:
branches:
- dev
name: create-release
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
command: manifest
1 change: 0 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
git-tag-version=false
lockfile-version=3
engine-strict=true
global-style=true
Expand Down
1 change: 1 addition & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{ ".": "1.5.2" }
2 changes: 1 addition & 1 deletion packages/MakePDF/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "discordbots-makepdf",
"version": "1.5.2",
"version": "1.6.0",
"main": "makepdf.js",
"scripts": {
"start": "node -r dotenv/config ."
Expand Down
2 changes: 1 addition & 1 deletion packages/VoiceNotify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "discordbots-voicenotify",
"version": "1.5.2",
"version": "1.6.0",
"main": "voicenotify.js",
"scripts": {
"start": "node -r dotenv/config ."
Expand Down
30 changes: 30 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"bootstrap-sha": "67e7e7748545460add1acd2ec9a1ad7ee5a77bc3",
"plugins": ["node-workspace"],
"release-type": "node",
"packages": {
".": {}
},
"changelog-sections": [
{ "type": "new", "section": "✨ Features" },
{ "type": "feat", "section": "✨ Features" },
{ "type": "fix", "section": "🔨 Improvements" },
{ "type": "perf", "section": "🔨 Improvements" },
{ "type": "bug", "section": "🐛 Bugfixes" },
{ "type": "bugfix", "section": "🐛 Bugfixes" },
{ "type": "chore", "section": "📦 Chores" },
{ "type": "chores", "section": "📦 Chores" },
{ "type": "clean", "section": "🧹 Refactor" },
{ "type": "refactor", "section": "🧹 Refactor" },
{ "type": "docs", "section": "📚 Documentation" },
{ "type": "readme", "section": "📚 Documentation" },
{ "type": "test", "section": "🧪 Testing" },
{ "type": "tests", "section": "🧪 Testing" },
{ "type": "build", "section": "👷 Runtime" },
{ "type": "runtime", "section": "👷 Runtime" },
{ "type": "ci", "section": "🚚 Integration" },
{ "type": "cd", "section": "🚚 Integration" },
{ "type": "undo", "section": "⏪ Reverts" },
{ "type": "revert", "section": "⏪ Reverts" }
]
}

0 comments on commit bb33d41

Please sign in to comment.