more resources for common lisp #22
  
    
      This file contains hidden or 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: Publish to GitHub Pages | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v1 | |
| - name: Install Emacs | |
| uses: purcell/setup-emacs@master | |
| with: | |
| version: 29.3 | |
| - name: Build the site | |
| run: | | |
| echo "Building the website" | |
| pwd | |
| emacs -q --script ./publish.el | |
| - name: Publish generated content to GitHub Pages | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| branch: gh-pages | |
| folder: public |