update readme #40
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: 🎨 Storybook | |
on: | |
push: | |
branches: ["main"] | |
workflow_dispatch: | |
jobs: | |
storybook: | |
name: 🎨 Storybook Build & Deploy to GH Pages | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
runs-on: ubuntu-latest | |
steps: | |
- name: Use variables | |
run: | | |
echo "database : $EDGEDB_DATABASE" | |
echo "instance : $EDGEDB_INSTANCE" | |
env: | |
EDGEDB_DATABASE: ${{ vars.EDGEDB_DATABASE }} | |
EDGEDB_INSTANCE: ${{ vars.EDGEDB_INSTANCE }} | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/Iron | |
- name: Cache node_modules | |
id: cache-node-modules | |
uses: actions/cache@v4 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }} | |
- name: Install | |
run: npm install | |
env: | |
EDGEDB_SECRET_KEY: ${{ secrets.EDGEDB_SECRET_KEY }} | |
EDGEDB_INSTANCE: ${{ vars.EDGEDB_INSTANCE }} | |
EDGEDB_DATABASE: ${{ vars.EDGEDB_DATABASE }} | |
- name: Build Storybook | |
run: SKIP_ENV_VALIDATION=true npm run sb:build | |
- name: Upload Storybook | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: storybook-static | |
- name: Deploy to GitHub Pages | |
uses: actions/deploy-pages@v4 | |
with: | |
token: ${{ github.token }} |