aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/jekyll.yml
blob: b6be8fa04404bf187480be00fe76d8d5270ad956 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Jekyll

on:
  push:
  pull_request:
  workflow_dispatch:

jobs:
  deploy:
    runs-on: ubuntu-latest
    env:
      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: '${{ env.RUBY_VERSION }}'
          bundler-cache: true
      - name: Build
        run: make build
      - name: Check integrity
        run: |
          nohup make serve &
          sleep 3 && make wget