diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-16 22:36:26 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-16 22:36:26 +0200 |
commit | 7a613adbae1bf5674c64972e5629a439d5e1c530 (patch) | |
tree | c20b25d151f8225ad17072c50fa866f38665fd72 /.github/workflows/jekyll.yml | |
parent | remove category from permalinks (diff) | |
download | blog-7a613adbae1bf5674c64972e5629a439d5e1c530.tar.gz blog-7a613adbae1bf5674c64972e5629a439d5e1c530.zip |
switch from GitHub Pages to plain Jekyllmigration
Diffstat (limited to '.github/workflows/jekyll.yml')
-rw-r--r-- | .github/workflows/jekyll.yml | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 914c2bb..4d41b8d 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -8,23 +8,17 @@ on: jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - ruby-version: [2.6, 2.7] - version: [Gemfile, latest] - include: - - {version: Gemfile, gemfile: Gemfile} - - {version: latest, gemfile: .ci/Gemfile} - name: 'Build / ${{ matrix.ruby-version }} / ${{ matrix.version }}' env: - BUNDLE_GEMFILE: '${{ matrix.gemfile }}' + RUBY_VERSION: 2.7 + JEKYLL_GITHUB_TOKEN: '${{ secrets.GH_TOKEN }}' + name: Deploy steps: - name: Checkout uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: '${{ matrix.ruby-version }}' + ruby-version: '${{ env.RUBY_VERSION }}' bundler-cache: true - name: Build run: make build |