forked from cryptohagen.dk/website
jekyll erro fix try007
This commit is contained in:
parent
f06abe5ab5
commit
ebd167899d
|
@ -5,7 +5,7 @@ steps:
|
||||||
- name: build
|
- name: build
|
||||||
image: ruby
|
image: ruby
|
||||||
commands:
|
commands:
|
||||||
- gem install bundler:1.17.3
|
- gem install bundler:2.2.22
|
||||||
- bundle install
|
- bundle install
|
||||||
- bundle exec jekyll build
|
- bundle exec jekyll build
|
||||||
|
|
||||||
|
|
4
Gemfile
4
Gemfile
|
@ -9,7 +9,7 @@ ruby RUBY_VERSION
|
||||||
#
|
#
|
||||||
# This will help ensure the proper Jekyll version is running.
|
# This will help ensure the proper Jekyll version is running.
|
||||||
# Happy Jekylling!
|
# Happy Jekylling!
|
||||||
gem "jekyll", ">= 4.2.0"
|
gem "jekyll", "4.3.3"
|
||||||
|
|
||||||
|
|
||||||
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
|
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
|
||||||
|
@ -18,7 +18,7 @@ gem "jekyll", ">= 4.2.0"
|
||||||
|
|
||||||
# If you have any plugins, put them here!
|
# If you have any plugins, put them here!
|
||||||
group :jekyll_plugins do
|
group :jekyll_plugins do
|
||||||
gem "jekyll-feed", "~> 0.6"
|
gem "jekyll-feed", "0.17.0"
|
||||||
gem "jekyll-sitemap"
|
gem "jekyll-sitemap"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -68,8 +68,8 @@ PLATFORMS
|
||||||
x86_64-linux-musl
|
x86_64-linux-musl
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
jekyll (>= 4.2.0)
|
jekyll (= 4.3.3)
|
||||||
jekyll-feed (~> 0.6)
|
jekyll-feed (= 0.17.0)
|
||||||
jekyll-sitemap
|
jekyll-sitemap
|
||||||
tzinfo-data
|
tzinfo-data
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
---
|
---
|
||||||
|
---
|
||||||
|
|
||||||
$font-family-sans-serif: monospace;
|
$font-family-sans-serif: monospace;
|
||||||
$font-family-serif: monospace;
|
$font-family-serif: monospace;
|
||||||
|
@ -25,7 +26,7 @@ $brand-danger: #B4763C;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
padding-top: 50px; /* Because of static topbar */
|
padding-top: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
section {
|
section {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
version: "3"
|
version: "3"
|
||||||
services:
|
services:
|
||||||
jekyll:
|
jekyll:
|
||||||
image: jekyll/builder:latest
|
image: jekyll/jekyll:latest
|
||||||
command: jekyll serve --trace --livereload --livereload-port 35729
|
command: jekyll serve --trace --livereload --livereload-port 35729
|
||||||
ports:
|
ports:
|
||||||
- 4000:4000
|
- 4000:4000
|
||||||
|
|
Loading…
Reference in a new issue