-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: automatic release mechanism (#53)
* ci: automatic release mechanism * docs: update CONTRIBUTING.md with conventional commits guidelines * ci: add CI check that fails if a PR base branch is master * style: rename check jobs * ci: npm update * make pre-release builds only on pull request from release branch to master, not on push * fix bad artifact name Co-authored-by: Adam Smelko <adamsmelko1@gmail.com>
- Loading branch information
1 parent
83fdf18
commit 0abf1d8
Showing
10 changed files
with
6,220 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
branches: | ||
- master | ||
- name: release-+([0-9]).+([0-9]).+([0-9]) | ||
prerelease: beta | ||
ci: true | ||
tagFormat: ${version} | ||
plugins: | ||
- - "@semantic-release/commit-analyzer" | ||
- preset: conventionalcommits | ||
- - "@semantic-release/release-notes-generator" | ||
- preset: conventionalcommits | ||
presetConfig: | ||
types: | ||
- type: feat | ||
section: "Features" | ||
hidden: false | ||
- type: fix | ||
section: "Fixes" | ||
hidden: false | ||
- type: docs | ||
section: "Other changes" | ||
hidden: false | ||
- type: style | ||
section: "Other changes" | ||
hidden: false | ||
- type: refactor | ||
section: "Other changes" | ||
hidden: false | ||
- type: perf | ||
section: "Fixes" | ||
hidden: false | ||
- type: test | ||
section: "Other changes" | ||
hidden: false | ||
- type: ci | ||
section: "Other changes" | ||
hidden: false | ||
- type: chore | ||
hidden: true | ||
- - "@semantic-release/exec" | ||
- generateNotesCmd: sh prepare_release.sh ${nextRelease.version} ${branch.name} "${nextRelease.notes}" ${lastRelease.version} ${Date.now()} | ||
- - "@semantic-release/github" | ||
- assets: | ||
- path: "multi.vsix" | ||
label: "hlasm-language-support-${nextRelease.version}.vsix" | ||
name: "hlasm-language-support-${nextRelease.version}.vsix" | ||
- path: "alpine.vsix" | ||
label: "hlasm-language-support-${nextRelease.version}-alpine.vsix" | ||
name: "hlasm-language-support-${nextRelease.version}-alpine.vsix" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.