forked from homeday-de/homeday-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (41 loc) · 1.37 KB
/
deploy-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
49
50
51
52
53
name: Storybook deployment
on:
# This allows us to manually trigger the deployment through GitHub
workflow_dispatch:
push:
branches:
- master
concurrency:
group: storybook_deployment
cancel-in-progress: true
env:
S3_BUCKET: homeday-blocks-production
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/[email protected]
- name: Set node version 🏗
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies ⬇️
run: npm ci
- name: Lint 📝
run: npm run lint:ci
- name: Unit test 🧪
run: npm run test:unit:ci
- name: Build Storybook 📦
run: npm run build:storybook
- name: Configure AWS Credentials 🔧
uses: aws-actions/[email protected]
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_SB }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_SB }}
aws-region: eu-central-1
- name: Deploy assets 📄
run: aws s3 cp storybook-static/ s3://${{ env.S3_BUCKET }} --recursive --exclude "*.html"
- name: Deploy index 📄
run: aws s3 cp storybook-static/ s3://${{ env.S3_BUCKET }} --recursive --exclude "*" --include "*.html"