Skip to content

bump: actions/checkout #7

bump: actions/checkout

bump: actions/checkout #7

name: Publish on push to main
on:
push:
branches:
- main
jobs:
prepare:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Prepend timestamp to index.html
run: |
echo "Published at: $(date)<br/>" | cat - ./public/index.html > temp && mv temp ./public/index.html
publish:
needs: prepare
uses: probcomp/gen-website-private/.github/workflows/publish_private_website.yml@main
with:
website_dir: './public'