-
Notifications
You must be signed in to change notification settings - Fork 63
37 lines (36 loc) · 1.02 KB
/
npm-publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Publish @next release to npm
on:
push:
branches:
- dev
# workflow_dispatch:
# inputs:
# branch:
# description: 'Define branch name'
# required: true
# default: 'dev'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- name: Configure Git user
run: |
git config --global user.email "github-actions@github.com"
git config --global user.name "GitHub Actions"
- run: npm version prerelease --preid=next
- run: npm publish --tag next
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
- name: Deploy TSDoc to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs
publish_branch: gh-pages
force_orphan: true