aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/jekyll.yml
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-04-09 23:38:38 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-04-09 23:50:58 +0300
commitdf083378128ffe2c247ee48a5d2a041167d0225c (patch)
tree5f384c11971c91b7679c8d2689808288cb5a8017 /.github/workflows/jekyll.yml
parentadd some pages & posts to showcase the theme (diff)
downloadjekyll-theme-df083378128ffe2c247ee48a5d2a041167d0225c.tar.gz
jekyll-theme-df083378128ffe2c247ee48a5d2a041167d0225c.zip
add GitHub Actions workflow
Diffstat (limited to '')
-rw-r--r--.github/workflows/jekyll.yml61
1 files changed, 61 insertions, 0 deletions
diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml
new file mode 100644
index 0000000..ba6ad48
--- /dev/null
+++ b/.github/workflows/jekyll.yml
@@ -0,0 +1,61 @@
+name: Publish
+
+on:
+ push:
+ pull_request:
+ workflow_dispatch:
+
+jobs:
+ bundler:
+ runs-on: ubuntu-18.04
+ name: Bundler
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: Set up Ruby
+ uses: ruby/setup-ruby@v1
+ with:
+ ruby-version: '2.6'
+ - name: Install dependencies
+ run: bundle install --jobs=3 --retry=3
+ - name: jekyll build
+ run: bundle exec jekyll build --drafts
+
+ github_pages:
+ runs-on: ubuntu-18.04
+ name: github-pages
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: Set up Ruby
+ uses: ruby/setup-ruby@v1
+ with:
+ ruby-version: '2.6'
+ - name: Install dependencies
+ run: |
+ rm -f -- Gemfile Gemfile.lock
+ gem install github-pages
+ - name: jekyll build
+ run: jekyll build
+
+ public:
+ needs: [github_pages]
+ runs-on: ubuntu-18.04
+ name: Publish
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ - name: Set up Ruby
+ uses: ruby/setup-ruby@v1
+ with:
+ ruby-version: '2.6'
+ - name: Install dependencies
+ run: bundle install --jobs=3 --retry=3
+ - name: Build
+ run: bundle exec jekyll build --baseurl /jekyll-theme
+ - name: Publish
+ uses: JamesIves/github-pages-deploy-action@4.1.1
+ with:
+ branch: gh-pages
+ folder: _site
+ single-commit: 1