Add files via upload

This commit is contained in:
yangbvv
2022-11-05 22:35:28 +08:00
committed by GitHub
parent 48f68750d1
commit fd8e68d50d
6 changed files with 91 additions and 1 deletions

6
script/bootstrap Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
set -e
gem install bundler
bundle install

6
script/build Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
set -e
echo "Building the example site..."
bundle exec jekyll build

15
script/cibuild Normal file
View File

@@ -0,0 +1,15 @@
#!/bin/sh
set -e
script/build
if test -e "./_site/index.html";then
echo "It builds!"
rm -Rf _site
else
echo "Huh. That's odd. The example site doesn't seem to build."
exit 1
fi
gem build minima.gemspec

3
script/server Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/sh
bundle exec jekyll serve