mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-01 20:32:19 +08:00
chore(build): deploy to npm
This commit is contained in:
parent
61e7414df6
commit
9a8ee6a714
27
.github/workflows/release.yml
vendored
27
.github/workflows/release.yml
vendored
@ -1,21 +1,26 @@
|
||||
name: Release
|
||||
on:
|
||||
push:
|
||||
tags: v*
|
||||
tags:
|
||||
- 'v*'
|
||||
jobs:
|
||||
publish-github-registry:
|
||||
publish-package:
|
||||
name: Publish package
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up node & dependencies
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
registry-url: https://npm.pkg.github.com/
|
||||
cache: "npm"
|
||||
- run: yarn install
|
||||
- run: yarn publish
|
||||
node-version: 22
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
always-auth: true
|
||||
- run: |
|
||||
corepack enable &&
|
||||
corepack install
|
||||
- name: Install dependencies
|
||||
run: yarn install --frozen-lockfile
|
||||
- name: Publish package
|
||||
run: yarn publish --access public
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
||||
permissions:
|
||||
packages: write
|
||||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
||||
|
@ -12,9 +12,6 @@
|
||||
"katex"
|
||||
],
|
||||
"main": "src/index.ts",
|
||||
"publishConfig": {
|
||||
"registry": "https://npm.pkg.github.com"
|
||||
},
|
||||
"dependencies": {
|
||||
"ckeditor5": "41.4.2"
|
||||
},
|
||||
@ -104,5 +101,6 @@
|
||||
"hooks": {
|
||||
"pre-commit": "lint-staged"
|
||||
}
|
||||
}
|
||||
},
|
||||
"packageManager": "yarn@1.22.22"
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user