-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (40 loc) · 1.08 KB
/
storybook.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
40
41
42
43
44
45
46
47
48
name: Build and Deploy
on:
push:
branches: [ master ]
jobs:
build-storybook:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install deps
run: npm install
- name: Build
run: npm run build-storybook
- name: Upload build result
uses: actions/upload-artifact@v1
with:
name: storybook-static
path: ./storybook-static
deploy-storybook:
runs-on: ubuntu-20.04
needs: build-storybook
steps:
- name: Download build
uses: actions/download-artifact@v1
with:
name: storybook-static
- name: Transfer build files to server
uses: appleboy/[email protected]
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.PRIVATE_KEY }}
source: "storybook-static/*"
target: "/var/www/moviegate-storybook"
strip_components: 1