mirror of
https://github.com/immich-app/immich.git
synced 2024-12-24 10:37:28 +02:00
19 lines
434 B
YAML
19 lines
434 B
YAML
name: Publish Package to npmjs
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
# Setup .npmrc file to publish to npm
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: "20.x"
|
|
registry-url: "https://registry.npmjs.org"
|
|
- run: npm ci
|
|
- run: npm publish
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|