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 f10d6d4
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 1 deletion.
34 changes: 34 additions & 0 deletions .github/workflows/generate-lockfile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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: Install dependencies
run: bundle install

- 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 }}

6 changes: 6 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
source "https://rubygems.org"

gem "jekyll", "~> 4.0"
gem "minimal-mistakes-jekyll"
gem "github-pages", group: :jekyll_plugins

Empty file added Gemfile.lock
Empty file.
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 f10d6d4

Please sign in to comment.