Skip to content

Update purdon-modernist-informatics note. #144

Update purdon-modernist-informatics note.

Update purdon-modernist-informatics note. #144

Workflow file for this run

name: Build and deploy Jekyll site to GitHub Pages
on:
push:
branches:
- develop
jobs:
jekyll:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Use GitHub Actions' cache to shorten build times and decrease load on servers
- uses: actions/cache@v3
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 }}
# Specify the Jekyll source location as a parameter
# - uses: helaili/jekyll-action@v2
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# Specify the target branch (optional)
- uses: helaili/jekyll-action@master
with:
pre_build_commands: git config --global http.version HTTP/1.1; apk fetch git-lfs;
token: ${{ secrets.GITHUB_TOKEN }}
target_branch: 'main'