We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82c602a commit 651cf83Copy full SHA for 651cf83
.github/workflows/jekyll.yml
@@ -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
19
+ token: ${{ secrets.GITHUB_TOKEN }}
20
+ env:
21
+ BUNDLE_JOBS: 4
0 commit comments