Removed myself from the credits in the README.md file. #33
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Deploy static website to `gh-pages` branch | |
name: pages-build | |
# Triggers for the workflow to run | |
on: | |
# Triggers the workflow on push or pull request events but only for the "master" branch | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Jobs to run on trigger | |
jobs: | |
github-pages: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the repository | |
- uses: actions/checkout@v2 | |
# Cache dependencies and build outputs | |
- uses: actions/cache@v2 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
# Build static website | |
- uses: helaili/jekyll-action@v2 | |
with: | |
target_branch: 'gh-pages' | |
token: ${{ secrets.GITHUB_TOKEN }} |