Skip to content

Fix local links - download #100

Fix local links - download

Fix local links - download #100

name: Deploy to Github Pages
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
jekyll:
runs-on: ubuntu-latest
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 }}
jekyll_src: '.'
target_branch: 'gh-pages'