This repository has been archived by the owner on Jan 20, 2023. It is now read-only.
forked from yuameshi/PhiCommunity
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (50 loc) · 1.71 KB
/
build-and-deploy.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
58
59
name: Build and Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
steps:
- name: Checkout Source
uses: actions/checkout@v2
with:
ref: main
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: '17'
- name: Setup Cache
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Setup Webpack & Install Dependences
run: |
git config --global user.email "[email protected]"
git config --global user.name "Yuameshi"
npm install webpack-cli webpack -g
npm install
- name: Build
run: npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GH_TOKEN }}
publish_dir: ./dist
- name: Trigger APP CI Build
run: |
curl 'https://api.github.com/repos/Yuameshi/PhiCommunityAPP/dispatches' --request POST \
-H 'Accept: application/vnd.github.v3+json' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer ${{ secrets.GH_TOKEN }}' \
--data-raw '{"event_type": "CI Build triggered by Repo:PhiCommunity"}'