-
Notifications
You must be signed in to change notification settings - Fork 6
30 lines (30 loc) · 836 Bytes
/
build.yaml
File metadata and controls
30 lines (30 loc) · 836 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
name: Build manubot.org
on:
push:
pull_request:
repository_dispatch:
types:
- catalog-update
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.5'
- name: Install dependencies
run: |
gem install bundler --version=2.3.26
bundle install --jobs=3
- name: Build website
run: bundle exec jekyll build
- name: Deploy website
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request' && !github.event.repository.fork
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _site
cname: manubot.org