-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (50 loc) · 1.32 KB
/
deploy-website-build.yml
File metadata and controls
52 lines (50 loc) · 1.32 KB
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
45
46
47
48
49
50
51
52
name: Deploy Website Build
on:
push:
branches:
- main
paths:
- website/**
jobs:
build-and-deploy:
name: Test and Build and Deploy Website
runs-on: ubuntu-latest
permissions:
contents: write
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup PNPM
uses: pnpm/action-setup@v3
with:
version: latest
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: "https://registry.npmjs.org"
cache: pnpm
- name: Install dependencies
shell: bash
run: pnpm install --frozen-lockfile
- name: Build Website
run: pnpm build:website
working-directory: website
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./website/build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
- name: Set output
run: echo "page_url=${{ steps.deployment.outputs.page_url }}" >> $GITHUB_ENV