Skip to content

Commit

Permalink
chore(workflows): add 'Docs release' job to deploy the documentation …
Browse files Browse the repository at this point in the history
…manually
  • Loading branch information
julien-deramond committed Feb 26, 2024
1 parent 8db1750 commit 338ca5f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/docs-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Docs release
on:
workflow_dispatch:

env:
FORCE_COLOR: 2
NODE: 20

jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "${{ env.NODE }}"
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Build Storybook
run: npm run build-storybook
- name: Deploy Storybook
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
npm run deploy-storybook

0 comments on commit 338ca5f

Please sign in to comment.