diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-13 17:46:34 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-05-13 18:20:23 +0200 |
commit | d231c9b71d31b4208ef679106ba38a6dbf91ef61 (patch) | |
tree | 98c35db1465839f9df71fa858eb16909627e7325 /.github/workflows/jekyll.yml | |
parent | move Jekyll options to _config.yml (diff) | |
download | egor-tensin.github.io-migration.tar.gz egor-tensin.github.io-migration.zip |
switch from GitHub Pages to plain Jekyllmigration
This is the beginning of moving everything out of GitHub Pages. Not that
I don't like it, it's just having two websites is one too many.
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/jekyll.yml | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 719fa95..647d275 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -9,25 +9,19 @@ on: workflow_dispatch: jobs: - bundler: + deploy: 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 |