Skip to content

Commit

Permalink
Ci/actions (#9)
Browse files Browse the repository at this point in the history
 fix: rcfile
  • Loading branch information
tabaktoni authored Jun 4, 2024
1 parent c516ea1 commit bef7278
Show file tree
Hide file tree
Showing 5 changed files with 588 additions and 74 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release --debug ${{ inputs.debug }} --dry-run ${{ inputs.dry-run }}
run: npx semantic-release --debug ${{ inputs.debug }} --dry-run ${{ inputs.dry-run }}
2 changes: 1 addition & 1 deletion .github/workflows/manual-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
with:
debug: ${{ inputs.debug }}
dry-run: ${{ inputs.dry-run }}
secrets: inherit
secrets: inherit
32 changes: 32 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"branches": [
"main",
{
"name": "develop",
"channel": "next"
},
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
],
"repositoryUrl": "https://github.com/starknet-io/types-js"
}
Loading

0 comments on commit bef7278

Please sign in to comment.