We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64135e9 commit c4056eeCopy full SHA for c4056ee
.github/workflows/a11y.yml
@@ -2,9 +2,9 @@ name: A11y CI
2
3
on:
4
push:
5
- branches: [main]
+ branches: [v6.2.x]
6
pull_request:
7
8
9
jobs:
10
a11y:
.github/workflows/node.js.yml
@@ -5,9 +5,9 @@ name: Node.js CI
11
12
13
build:
.github/workflows/promote.yml
@@ -3,7 +3,7 @@ on:
# Sequence of patterns matched against refs/tags
tags:
- - v6.*
+ - v6.2.*
build-and-promote:
runs-on: ubuntu-latest
@@ -28,4 +28,4 @@ jobs:
28
run: |
29
cd packages/module
30
npm version ${{ github.ref_name }} --git-tag-version false
31
- npm publish --tag=latest
+ npm publish --tag=patch
.github/workflows/release.yml
@@ -2,7 +2,7 @@ name: release
branches:
- - main
+ - 6.2.x
deploy:
packages/module/release.config.js
@@ -3,6 +3,7 @@ module.exports = {
'do-not-delete',
{ name: 'main', channel: 'prerelease', prerelease: 'prerelease' },
{ name: 'v5', channel: 'prerelease-v5', range: '5.4.x' },
+ { name: '6.2.x', channel: 'prerelease-bugfix', range: '6.2.x' },
],
analyzeCommits: {
preset: 'angular',
@@ -13,15 +14,15 @@ module.exports = {
14
{
15
16
releaseRules: [
- { type: 'chore', scope: 'deps', release: 'patch' },
17
- { type: 'chore', scope: 'ci-release', release: 'patch' },
+ { type: 'feat', release: 'patch' },
18
+ { type: 'fix', release: 'patch' },
19
20
},
21
22
'@semantic-release/release-notes-generator',
23
'@semantic-release/github',
- '@semantic-release/npm',
24
+ ['@semantic-release/npm', { pkgRoot: 'dist' }],
25
- tagFormat: 'prerelease-v${version}',
26
- dryRun: false,
+ tagFormat: 'patch-v${version}',
27
+ dryRun: true,
};
0 commit comments