decentralized-id.github.io/.github/workflows/github-pages.yml
Workflow config file is invalid. Please check your config file: yaml: line 4: did not find expected key
⧉ infominer 1f1420e008 test
2022-11-26 20:33:18 -05:00

23 lines
616 B
YAML

name: Build and deploy Jekyll site to GitHub Pages
on:
push:
branches:
- master
paths-ignore:
- '_data/**'
- '.github/workflows/twitter.yml'
# 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-
# Specify the target branch (optional)
- uses: helaili/jekyll-action@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
target_branch: 'gh-pages'