Add pre-commit hooks #11
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
name: Deploy site | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt-get install -y mandoc pandoc | |
- run: autoreconf -isv | |
- run: ./configure | |
- run: make site SITE_ID=238881e4-4c6d-4bcf-87df-d0fd12afd2ce | |
- uses: JamesIves/[email protected] | |
with: | |
folder: site-out | |
repository-name: jmmv/shtk | |
branch: gh-pages | |
ssh-key: ${{ secrets.SHTK_SITE_DEPLOY_KEY }} |