[Build] components storybook #193
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "[Build] components storybook" | |
permissions: | |
id-token: write # for fetching the OIDC token | |
contents: read # for actions/checkout | |
# run only once a day | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
env: | |
DEV_SERVER_URL: "https://dev.suite.sldev.cz" | |
jobs: | |
build-storybook: | |
if: github.repository == 'trezor/trezor-suite' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Configure aws credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::538326561891:role/gh_actions_trezor_suite_dev_deploy | |
aws-region: eu-central-1 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: yarn | |
- name: Install dependencies | |
run: | | |
echo -e "\nenableScripts: false" >> .yarnrc.yml | |
echo -e "\nenableHardenedMode: false" >> .yarnrc.yml | |
yarn workspaces focus @trezor/components | |
yarn workspaces focus @trezor/product-components | |
- name: Build storybook | |
env: | |
ASSET_PREFIX: /components/develop | |
run: | | |
yarn workspace @trezor/components storybook-build | |
- name: Build product-components storybook | |
env: | |
ASSET_PREFIX: /product-components/develop | |
run: | | |
yarn workspace @trezor/product-components storybook-build | |
- name: Upload suite storybook to dev.suite.sldev.cz | |
env: | |
COMPONENTS_DEPLOY_PATH: s3://dev.suite.sldev.cz/components/develop | |
PRODUCT_COMPONENTS_DEPLOY_PATH: s3://dev.suite.sldev.cz/product-components/develop | |
run: | | |
aws s3 sync --delete ./packages/components/.build-storybook ${COMPONENTS_DEPLOY_PATH} | |
aws s3 sync --delete ./packages/product-components/.build-storybook ${PRODUCT_COMPONENTS_DEPLOY_PATH} |