-
Notifications
You must be signed in to change notification settings - Fork 4
50 lines (41 loc) · 1.13 KB
/
build-jeckyll.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
name: Build and merge into gh-pages branch 2
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
services:
plantuml:
image: plantuml/plantuml-server:jetty
ports:
- 8080:8080
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0' # Specify the Ruby version you need for your Jekyll site
- name: Install Dependencies
run: |
gem install bundler
bundle install
- name: Build Site
run: |
bundle exec jekyll build -d build
- uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages-communication # The branch the action should deploy to.
folder: build # The folder the action should deploy.
clean: true
clean-exclude: |
CNAME