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 2bd29c4 commit f52c95cCopy full SHA for f52c95c
.github/CODEOWNERS
@@ -1 +1,2 @@
1
.release-please-manifest.json @eslint/eslint-tsc
2
+.github/workflows/release-please.yml @eslint/eslint-tsc
.github/workflows/release-please.yml
@@ -2,6 +2,7 @@ on:
push:
3
branches:
4
- main
5
+
6
name: release-please
7
8
jobs:
@@ -23,12 +24,14 @@ jobs:
23
24
registry-url: https://registry.npmjs.org
25
if: ${{ steps.release.outputs.release_created }}
26
27
+ # npm 11.5.1 or later is required so update to latest to be sure
28
+ - name: Update npm
29
+ run: npm install -g npm@latest
30
31
- name: Publish to npm
32
run: |
33
npm install
34
npm publish --provenance
- env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
35
36
37
- name: Publish to JSR
0 commit comments