Skip to content

Add a website for shtk #1

Add a website for shtk

Add a website for shtk #1

Workflow file for this run

name: Deploy site
on:
push:
branches:
- site
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: autoreconf -isv
- run: ./configure
- run: make site
- uses: JamesIves/github-pages-deploy-action@4.1.4
with:
folder: site-out
repository-name: jmmv/shtk
branch: gh-pages
ssh-key: ${{ secrets.SHTK_SITE_DEPLOY_KEY }}