-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (41 loc) · 1.17 KB
/
gh-pages.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Publish gh-pages
on:
push:
branches:
- main
workflow_dispatch:
env:
CI: true
TZ: Europe/Oslo
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies (bun)
run: bun install
- name: Initalize MSW
run: npx msw init ./public
- name: Build
run: npm run build:gh-pages
- name: Deploy
if: success()
uses: crazy-max/ghaction-github-pages@v4
with:
build_dir: build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}