Skip to content

Commit a2cfce5

Browse files
committed
fix: Updated to release correctly to npm.
1 parent 3b99218 commit a2cfce5

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

.github/workflows/a11y.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v2
16-
- name: Use Node.js 16
16+
- name: Use Node.js 18
1717
uses: actions/setup-node@v2
1818
with:
1919
node-version: 18

.github/workflows/promote.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: yarn install --frozen-lockfile && yarn build
1919
- uses: actions/setup-node@v3
2020
with:
21-
node-version: '16.x'
21+
node-version: '18.x'
2222
registry-url: 'https://registry.npmjs.org'
2323
- name: GitHub Tag Name example
2424
run: |

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ on:
33
push:
44
branches:
55
- main
6-
- v6
76
jobs:
87
deploy:
98
runs-on: ubuntu-latest

packages/module/release.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module.exports = {
22
branches: [
33
'do-not-delete',
4-
{ name: 'v4', channel: 'prerelease-v4', range: '4.x' },
54
{ name: 'main', channel: 'prerelease', prerelease: 'prerelease' },
65
{ name: 'v5', channel: 'prerelease-v5', range: '5.4.x' },
76
],
@@ -24,5 +23,5 @@ module.exports = {
2423
'@semantic-release/npm',
2524
],
2625
tagFormat: 'prerelease-v${version}',
27-
dryRun: true,
26+
dryRun: true
2827
};

0 commit comments

Comments
 (0)