Skip to content

Commit

Permalink
storybook deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
leomotors committed Sep 11, 2024
1 parent f038e98 commit 895a58b
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
47 changes: 47 additions & 0 deletions .github/workflows/storybook.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Deploy Storybook

on:
push:
branches:
- v2
paths:
- 'apps/storybook/**'
- 'packages/ui/**'

jobs:
storybook:
name: Storybook
runs-on: ubuntu-latest

permissions:
contents: read
deployments: write

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v4

- name: Setup node with cache
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: pnpm

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build project
run: pnpm turbo run --filter=@app/storybook build

- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@1
with:
# Using @leomotors's API token
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
projectName: cugetreg-storybook
directory: apps/storybook/storybook-static
2 changes: 1 addition & 1 deletion apps/storybook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

This application is deployed at https://storybook.cugetreg.com (Cloudflare Pages)

TODO: Deploy the application everytime `apps/storybook` or `packages/ui` changes using GitHub Actions.
GitHub Action is set to deploy the application everytime `apps/storybook` or `packages/ui` changes.

0 comments on commit 895a58b

Please sign in to comment.