-
Notifications
You must be signed in to change notification settings - Fork 493
57 lines (47 loc) · 1.19 KB
/
web.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
45
46
47
48
49
50
51
52
53
54
55
56
57
name: web
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: 'pages'
cancel-in-progress: false
on:
pull_request:
push:
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
branches:
- master
workflow_dispatch:
jobs:
web:
name: web
if: github.repository == 'microsoft/windows-rs'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: current
- name: Install dependencies
run: npm install
working-directory: web/features
- name: Build project
run: npm run build
working-directory: web/features
- name: Stage website
run: |
mkdir -p web/build/features
cp -r web/features/build/* web/build/features
if: github.event_name != 'pull_request'
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: web/build
if: github.event_name != 'pull_request'
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4
if: github.event_name != 'pull_request'