Skip to content

Commit

Permalink
chore(no-release): [skip release] build updates (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
carpasse authored Feb 4, 2024
2 parents 7c75fb9 + 414fe2b commit ce1a1af
Show file tree
Hide file tree
Showing 5 changed files with 140 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: Node.js CI

on:
push:
branches: ['master']
branches: ['master', 'beta', 'alpha']
pull_request:
branches: ['master']
branches: ['master', 'beta', 'alpha']

jobs:
build:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- master
- beta
- alpha

jobs:
release:
Expand Down
24 changes: 19 additions & 5 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{
"type": "docs",
"scope": "README",
"release": "patch"
"release": false
},
{
"type": "refactor",
Expand All @@ -24,23 +24,27 @@
},
{
"type": "test",
"release": "patch"
"release": false
},
{
"type": "build",
"release": "patch"
"release": false
},
{
"type": "ci",
"release": "patch"
"release": false
},
{
"type": "chore",
"release": "patch"
"release": false
},
{
"type": "revert",
"release": "patch"
},
{
"scope": "no-release",
"release": false
}
]
}
Expand All @@ -52,6 +56,16 @@
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package-lock.json",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
117 changes: 115 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@carpasse/dapi",
"version": "0.1.0",
"version": "1.0.0",
"description": "Simple library to create complex systems out of pure functions",
"main": "./dist/cjs/index.js",
"module": "./dist/cjs/index.mjs",
Expand Down Expand Up @@ -63,6 +63,7 @@
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
Expand Down

0 comments on commit ce1a1af

Please sign in to comment.