decentralized-id.github.io/.github/workflows/github-pages.yml

24 lines
613 B
YAML
Raw Normal View History

2022-11-27 01:08:22 +00:00
name: Build and deploy Jekyll site to GitHub Pages
on:
push:
branches:
- master
paths-ignore:
- '_data/**'
- '.github/workflows/twitter.yml'
jobs:
github-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }}
restore-keys: |
${{ runner.os }}-gems-
- uses: helaili/jekyll-action@2.0.5 # Choose any one of the Jekyll Actions
2022-11-27 01:12:23 +00:00
env:
JEKYLL_PAT: ${{ secrets.JEKYLL_PAT }}