-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.releaserc.yml
More file actions
22 lines (20 loc) · 836 Bytes
/
.releaserc.yml
File metadata and controls
22 lines (20 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Reference: https://semantic-release.gitbook.io/semantic-release/usage/configuration#branches
branches:
# Support maintenance releases.
- name: "+([0-9])?(.{+([0-9]),x}).x"
# Default distribution channel.
- name: "main"
# Release channel for experimental features.
- name: "edge"
# Prereleases via alpha and beta channel.
- name: "beta"
prerelease: true
- name: "alpha"
prerelease: true
# Reference: https://semantic-release.gitbook.io/semantic-release/usage/configuration#repositoryurl
repositoryUrl: https://github.com/nicklasfrahm/netadm.git
# Reference: https://semantic-release.gitbook.io/semantic-release/usage/configuration#plugins
plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- ["@semantic-release/github", { assets: [{ path: "release/**" }] }]