Skip to content

Merge pull request #733 from danskernesdigitalebibliotek/dependabot/n… #1137

Merge pull request #733 from danskernesdigitalebibliotek/dependabot/n…

Merge pull request #733 from danskernesdigitalebibliotek/dependabot/n… #1137

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- develop
jobs:
github-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: yarn install --frozen-lockfile
- run: yarn css:build
- run: yarn build-storybook
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./storybook-static