Skip to content

Merge pull request #1067 from navikt/bugfix-overgangstonad-ikke-bad-r… #287

Merge pull request #1067 from navikt/bugfix-overgangstonad-ikke-bad-r…

Merge pull request #1067 from navikt/bugfix-overgangstonad-ikke-bad-r… #287

name: Deploy github pages
on:
workflow_dispatch:
push:
branches:
- master
permissions:
contents: write
pages: write
jobs:
update-gh-pages:
name: Update GitHub pages
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
registry-url: 'https://npm.pkg.github.com'
- name: Install dependencies
run: npm ci
env: # Kan nok fjernes igjen når vi ikke bruker ds-icons lenger
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
- name: Build mock application
run: npm run build:mock
- name: Legg til 404 fil
run: cp ./.github/pages/404.html ./build/404.html
- name: Update GitHub pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build