Skip to content

Commit 4018c18

Browse files
committed
theming
1 parent 992ee7b commit 4018c18

19 files changed

+536
-240
lines changed

.envrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
use flake

.github/workflows/jekyll.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

.github/workflows/pages.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Build and Deploy Jekyll Site
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
- main
9+
workflow_dispatch:
10+
11+
permissions:
12+
contents: read
13+
pages: write
14+
id-token: write
15+
16+
concurrency:
17+
group: pages
18+
cancel-in-progress: false
19+
20+
jobs:
21+
build:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: Checkout
25+
uses: actions/checkout@v4
26+
27+
- name: Setup Ruby
28+
uses: ruby/setup-ruby@v1
29+
with:
30+
ruby-version: .ruby-version
31+
bundler-cache: true
32+
33+
- name: Build
34+
env:
35+
JEKYLL_ENV: production
36+
run: bundle exec jekyll build
37+
38+
- name: Upload artifact
39+
if: github.event_name != 'pull_request'
40+
uses: actions/upload-pages-artifact@v3
41+
42+
deploy:
43+
if: github.event_name != 'pull_request'
44+
environment:
45+
name: github-pages
46+
url: ${{ steps.deployment.outputs.page_url }}
47+
needs: build
48+
runs-on: ubuntu-latest
49+
steps:
50+
- name: Deploy
51+
id: deployment
52+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
.DS_Store
22
_site/
3+
.direnv/
4+
.bundle/
5+
vendor/bundle/
6+
.jekyll-cache/

.jekyll-metadata

15.9 KB
Binary file not shown.

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.3

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
source 'https://rubygems.org'
2-
gem 'github-pages', group: :jekyll_plugins
2+
gem 'github-pages', '~> 232', group: :jekyll_plugins
33

44
gem "webrick", "~> 1.8"
5+
gem "faraday-retry", "~> 2.3"

0 commit comments

Comments
 (0)