Skip to content

Commit

Permalink
ci: changed plugin order
Browse files Browse the repository at this point in the history
  • Loading branch information
tschifftner committed Feb 2, 2021
1 parent 0593076 commit 1297706
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-node@v2
with:
node-version: 12
- uses: bahmutov/npm-install@v1
- run: npx semantic-release
env:
Expand Down
14 changes: 4 additions & 10 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,17 @@
{
"branches": ["main", "master"],
"repositoryUrl": "https://github.com/ambimax/semantic-release-composer",
"branches": ["main"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": ["package.json", "yarn.lock", "CHANGELOG.md"],
"message": "docs(changelog): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/npm"
"@semantic-release/github"
]
}

0 comments on commit 1297706

Please sign in to comment.