generated from uwu/neptune-template
-
-
Notifications
You must be signed in to change notification settings - Fork 15
57 lines (48 loc) · 1.03 KB
/
buildPages.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: Build and deploy
on:
push:
branches: [master]
paths:
- "plugins/**"
- "themes/**"
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- name: Prepare environment
uses: actions/setup-node@v3
with:
node-version: "16"
- name: Install dependencies
run: |
npm i
for plugin in plugins/*
do
cd $plugin
npm install
cd ../..
done
- name: Build plugin(s)
run: |
mkdir -p .dist
npm run build
for plugin in plugins/*
do
if [ -d "$plugin/dist" ]; then
cp -r "$plugin/dist" ".dist/$(basename $plugin)"
else
echo "Directory $plugin/dist does not exist skipping..."
fi
done
- name: Copy themes folder
run: |
cp -r themes .dist/themes
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .dist