Skip to content

Commit 651cf83

Browse files
author
sam bacha
authored
Create jekyll.yml
1 parent 82c602a commit 651cf83

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/jekyll.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
on: push
2+
3+
jobs:
4+
jekyll:
5+
runs-on: ubuntu-16.04
6+
steps:
7+
- uses: actions/checkout@v2
8+
9+
# Use GitHub Actions' cache to shorten build times and decrease load on servers
10+
- uses: actions/cache@v2
11+
with:
12+
path: vendor/bundle
13+
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }}
14+
restore-keys: |
15+
${{ runner.os }}-gems-
16+
# Standard usage
17+
- uses: helaili/jekyll-action@v2
18+
with:
19+
token: ${{ secrets.GITHUB_TOKEN }}
20+
env:
21+
BUNDLE_JOBS: 4

0 commit comments

Comments
 (0)