-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (34 loc) · 965 Bytes
/
demo.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
name: 'Deploy to Pages'
on:
push:
branches:
- main
jobs:
deploy-demo:
runs-on: ubuntu-latest
defaults:
run:
working-directory: './example/'
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup node env 📦
uses: actions/setup-node@v4
with:
node-version: 'current'
check-latest: true
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies 🚀
run: npm ci --prefer-offline --no-audit --omit=optional
- name: Run build 🏁
run: npm run build
env:
VITE_WEATHER_API_KEY: ${{ secrets.WEATHER_API_KEY }}
- name: Deploy to GitHub Pages 🚀
uses: peaceiris/actions-gh-pages@v3.9.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./example/dist