-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (45 loc) · 1.18 KB
/
deploy.yml
File metadata and controls
56 lines (45 loc) · 1.18 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
53
54
55
56
name: Deploy
on:
push:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
container:
image: node:22.6.0
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Install dependencies
run: npm install
working-directory: ./wsfs
- name: Build project
run: npm run gh-build
working-directory: ./wsfs
- name: Upload production-ready build files
uses: actions/upload-pages-artifact@v3
with:
name: github-pages
path: ./wsfs/dist
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
container:
image: ghcr.io/actions/actions-runner:latest
if: github.ref == 'refs/heads/main'
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4