Skip to content

Commit

Permalink
*: update theme
Browse files Browse the repository at this point in the history
  • Loading branch information
zimulala committed Dec 16, 2024
1 parent 40f9b6d commit f5dc46a
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 1 deletion.
42 changes: 42 additions & 0 deletions .github/workflows/generate-lockfile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Generate Gemfile.lock

on:
push:
paths:
- Gemfile

jobs:
generate-lockfile:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
bundler-cache: true

- name: Debug bundler environment
run: |
ruby -v
bundler -v
gem env
gem list
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
env:
BUNDLE_PATH: vendor/bundle

- name: Commit and push Gemfile.lock
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add Gemfile.lock
git commit -m "Add Gemfile.lock (generated by GitHub Actions)"
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
source "https://rubygems.org"

gem "jekyll", "3.9.2"
gem "minimal-mistakes-jekyll"
gem "github-pages", "~> 227", group: :jekyll_plugins
3 changes: 2 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# Review documentation to determine if you should use `theme` or `remote_theme`
# https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/#installing-the-theme

# theme : "minimal-mistakes-jekyll"
theme : "minimal-mistakes-jekyll"
# remote_theme : "mmistakes/minimal-mistakes"
minimal_mistakes_skin : "default" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise"

Expand Down Expand Up @@ -235,6 +235,7 @@ plugins:
- jekyll-sitemap
- jekyll-gist
- jekyll-feed
- jekyll-seo-tag
- jekyll-include-cache

# mimic GitHub Pages with --safe
Expand Down

0 comments on commit f5dc46a

Please sign in to comment.