-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (35 loc) · 934 Bytes
/
docs.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
38
39
name: Docs
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: 'https://registry.npmjs.org'
- name: init
run: |
npm i -g pnpm
pnpm install
- name: generate storybook
run: pnpm build-storybook
- name: Create new commit
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config user.email "[email protected]"
git config user.name "github-actions"
git fetch --all
git switch storybook
rm -rf ./docs
mv -f ./storybook-static ./docs
touch ./docs/.nojekyll
git add .
git commit -m "docs" -n
git push -f origin storybook