mirror of
https://github.com/Decentralized-ID/decentralized-id.github.io.git
synced 2024-10-01 01:05:54 -04:00
15 lines
289 B
YAML
15 lines
289 B
YAML
|
name: Build and deploy Jekyll site to GitHub Pages
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
github-pages:
|
||
|
runs-on: ubuntu-16.04
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: helaili/jekyll-action@2.0.1
|
||
|
env:
|
||
|
JEKYLL_PAT: ${{ secrets.JEKYLL_PAT }}
|