Skip to content

Merge pull request #1184 from navikt/ux-signals-test #195

Merge pull request #1184 from navikt/ux-signals-test

Merge pull request #1184 from navikt/ux-signals-test #195

Workflow file for this run

name: Publish gh-pages
on:
push:
branches:
- main
workflow_dispatch:
env:
CI: true
TZ: Europe/Oslo
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: "https://npm.pkg.github.com"
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
- name: Build
run: npm run build:gh-pages
- name: Deploy
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
build_dir: build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}