Skip to content

Merge pull request #159 from travisn/remove-koor #11

Merge pull request #159 from travisn/remove-koor

Merge pull request #159 from travisn/remove-koor #11

Workflow file for this run

name: Build and Publish Website
on:
push:
branches:
- master
defaults:
run:
# reference: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#using-a-specific-shell
shell: bash --noprofile --norc -eo pipefail -x {0}
permissions:
contents: read
jobs:
build-and-publish-website:
# Depending on default permission settings for your org (contents being read-only or read-write for workloads), you will have to add permissions
# see: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token
permissions:
contents: write
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Build and publish website
run: |
make publish
- name: Set up tmate session for debugging
if: failure()
uses: mxschmitt/action-tmate@v3
timeout-minutes: 30