-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (34 loc) · 882 Bytes
/
push.yml
File metadata and controls
41 lines (34 loc) · 882 Bytes
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
name: Push
on:
push:
branches: [ main ]
jobs:
push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: 17
distribution: oracle
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: latest
- name: Generate navigation
shell: bash
run: sh generate.sh
- name: Copy site
shell: bash
run: |
mkdir -p website
cp -rf build/site/* website
touch website/.nojekyll
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4.6.3
with:
folder: website
branch: 'gh-pages'
commit-message: "[CI] Publish Documentation for ${{ github.sha }}"