mirror of
https://github.com/zadam/trilium.git
synced 2026-01-10 00:24:32 +01:00
20 lines
531 B
YAML
20 lines
531 B
YAML
name: Release
|
|
on:
|
|
push:
|
|
jobs:
|
|
publish-github-registry:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: corepack enable
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
registry-url: 'https://registry.npmjs.org'
|
|
- run: yarn install
|
|
- run: yarn push
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
|
permissions:
|
|
contents: read
|
|
packages: write |