-
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (30 loc) · 871 Bytes
/
build.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
name: build
on: [push, pull_request, workflow_dispatch]
env:
TZ: Asia/Tokyo
jobs:
build:
name: Build
runs-on: macos-14
steps:
- name: Checkout the Git repository
uses: actions/[email protected]
with:
fetch-depth: 0 # for jekyll-last-modified-at
- name: Install Homebrew Packages
run: brew install lapack openblas # for classifier-reborn
- name: Setup Ruby
uses: ruby/[email protected]
with:
bundler-cache: true
- name: Build the site
run: bundle exec jekyll build
env:
JEKYLL_ENV: production
- name: Deploy the site
if: ${{ github.ref == 'refs/heads/main' }}
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _site
cname: akkinoc.dev