Skip to content

Commit

Permalink
Create jekyll.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sam bacha authored Apr 12, 2021
1 parent 82c602a commit 651cf83
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on: push

jobs:
jekyll:
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v2

# Use GitHub Actions' cache to shorten build times and decrease load on servers
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }}
restore-keys: |
${{ runner.os }}-gems-
# Standard usage
- uses: helaili/jekyll-action@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
env:
BUNDLE_JOBS: 4

0 comments on commit 651cf83

Please sign in to comment.