-
Notifications
You must be signed in to change notification settings - Fork 8
37 lines (35 loc) · 1.04 KB
/
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: NPM publish + GH Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- run: git config user.email "[email protected]" && git config user.name "Arran White"
- name: Install dependencies
run: npm ci
- name: Build library
run: npm run build
- name: Generate changelog + tag
run: npm run release
- name: Commit changelog
run: git push --follow-tags origin main
- name: Publish on NPM
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Build demo site
run: npm run build-demo
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./demo_dist