Skip to content

Update en.json

Update en.json #125

# Copyright (C) 2020 Really Awesome Technology Ltd
#
# This file is part of RACTF.
#
# RACTF is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# RACTF is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with RACTF. If not, see <https:#www.gnu.org/licenses/>.
name: Build Storybook
on:
push:
branches:
- master
workflow_dispatch: null
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: true
- uses: pnpm/[email protected]
with:
version: 6.20.3
- name: Use Node.js 14
uses: actions/setup-node@v1
with:
node-version: 14.x
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile --shamefully-hoist
- name: Run Build
run: pnpm run build-storybook -- -o build-storybook
- uses: jakejarvis/s3-sync-action@master
with:
args: --acl public-read --follow-symlinks
env:
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET_UIKIT }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'eu-west-2'
SOURCE_DIR: 'build-storybook'