Skip to content

Commit bdbe141

Browse files
committed
jekyll garbage
1 parent 6956fe4 commit bdbe141

File tree

4 files changed

+95
-1
lines changed

4 files changed

+95
-1
lines changed

.github/workflows/jekyll.yml

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# This workflow uses actions that are not certified by GitHub.
2+
# They are provided by a third-party and are governed by
3+
# separate terms of service, privacy policy, and support
4+
# documentation.
5+
6+
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
7+
name: Deploy Jekyll site to Pages
8+
9+
on:
10+
# Runs on pushes targeting the default branch
11+
push:
12+
branches: ["master"]
13+
14+
# Allows you to run this workflow manually from the Actions tab
15+
workflow_dispatch:
16+
17+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
18+
permissions:
19+
contents: read
20+
pages: write
21+
id-token: write
22+
23+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
24+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
25+
concurrency:
26+
group: "pages"
27+
cancel-in-progress: false
28+
29+
jobs:
30+
# Build job
31+
build:
32+
runs-on: ubuntu-latest
33+
steps:
34+
- name: Checkout
35+
uses: actions/checkout@v4
36+
- name: Setup Ruby
37+
# https://github.com/ruby/setup-ruby/releases/tag/v1.207.0
38+
uses: ruby/setup-ruby@v1
39+
with:
40+
ruby-version: '3.1' # Not needed with a .ruby-version file
41+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
42+
cache-version: 0 # Increment this number if you need to re-download cached gems
43+
- name: Setup Pages
44+
id: pages
45+
uses: actions/configure-pages@v5
46+
- name: Build with Jekyll
47+
# Outputs to the './_site' directory by default
48+
run: bundle exec jekyll build --verbose --baseurl "${{ steps.pages.outputs.base_path }}"
49+
env:
50+
JEKYLL_ENV: production
51+
- name: Upload artifact
52+
# Automatically uploads an artifact from the './_site' directory by default
53+
uses: actions/upload-pages-artifact@v3
54+
55+
# Deployment job
56+
deploy:
57+
environment:
58+
name: github-pages
59+
url: ${{ steps.deployment.outputs.page_url }}
60+
runs-on: ubuntu-latest
61+
needs: build
62+
steps:
63+
- name: Deploy to GitHub Pages
64+
id: deployment
65+
uses: actions/deploy-pages@v4

Gemfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
source 'https://rubygems.org'
2+
3+
gem "jekyll", "~> 4.2"
4+
5+
group :jekyll_plugins do
6+
gem "jekyll-default-layout", "~> 0.1.5"
7+
gem "jekyll-seo-tag", "~> 2.8.0"
8+
gem "jekyll-github-metadata", "~> 2.16.1"
9+
gem "jekyll-optional-front-matter", "~> 0.3.2"
10+
gem "jekyll-paginate", "~> 1.1.0"
11+
gem "jekyll-readme-index", "~> 0.3.0"
12+
gem "jekyll-titles-from-headings", "~> 0.5.3"
13+
gem "jekyll-relative-links", "~> 0.7.0"
14+
gem "jekyll-remote-theme", "~> 0.4.3"
15+
end

_config.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
title: Pokémon mini Development Documentation
2+
repository: logicplace/pm-dev-docs
3+
4+
permalink: pretty
5+
verbose: true
6+
plugins:
7+
- jekyll-default-layout
8+
- jekyll-github-metadata
9+
- jekyll-optional-front-matter
10+
- jekyll-paginate
11+
- jekyll-readme-index
12+
- jekyll-titles-from-headings
13+
- jekyll-relative-links
14+
- jekyll-remote-theme
15+
remote_theme: pages-themes/[email protected]

_includes/head-custom.html

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)