Merge pull request #369 from inbo/RCinbo-patch-1 #108
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: Build the site and deploy to GitHub pages | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout (tutorials) | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: true # Fetch Hugo themes (true OR recursive) | |
| fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
| - name: Checkout (theme) | |
| uses: actions/checkout@v3 | |
| with: | |
| repository: MunifTanjim/minimo | |
| ref: v2.9.0 | |
| path: themes/minimo | |
| - name: Setup Hugo | |
| uses: peaceiris/actions-hugo@v2 | |
| with: | |
| hugo-version: '0.88.1' | |
| # extended: true | |
| - name: Build | |
| run: hugo | |
| # Need to add post build for the search functionality... | |
| - name: Install JS dependencies to build the index | |
| run: npm install lunr glob | |
| - name: Generate search index | |
| run: node themes/minimo/scripts/generate-search-index-lunr.js | |
| - name: Deploy 🚀 | |
| uses: JamesIves/[email protected] | |
| with: | |
| branch: gh-pages | |
| folder: public |