forked from DIYgod/RSSHub
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (42 loc) · 1.04 KB
/
build-assets.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
name: Build assets
on:
push:
branches:
- master
paths:
- 'assets/radar-rules.js'
- 'lib/**/maintainer.js'
- 'lib/**/radar-rules.js'
- 'lib/**/radar.js'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
name: Build assets
timeout-minutes: 5
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js Active LTS
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'pnpm'
- name: Install dependencies (yarn)
run: pnpm i
- name: Build assets
run: npm run build:all
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./assets
user_name: 'github-actions[bot]'
user_email: '41898282+github-actions[bot]@users.noreply.github.com'