-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (34 loc) · 1.1 KB
/
publish-site.yaml
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
name: Publish Site
on:
push:
branches:
- main
jobs:
publish-docs:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
# Ensures only one job per workflow and branch runs at a time
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Build YARD docs and Jekyll site
run: bundle exec rake site:build
- name: Deploy to GitHub Pages
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v4
with:
# The GitHub Actions runner automatically creates this `GITHUB_TOKEN` secret
github_token: ${{ secrets.GITHUB_TOKEN }}
# The output directory for Jekyll
publish_dir: config/site/_site
# The branch to push to for GitHub Pages
publish_branch: gh-pages
enable_jekyll: true