Merge pull request #264 from RanitMukherjee/patch-3 #205
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 and Deploy Site | |
| on: | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout 🛎️ | |
| uses: actions/checkout@v3.5.3 | |
| - name: Install and Build 🔧 | |
| run: | | |
| make setup-libs | |
| make build | |
| - name: Deploy 🚀 | |
| uses: JamesIves/github-pages-deploy-action@v4.4.3 | |
| with: | |
| branch: site # The branch the action should deploy to. | |
| folder: site/build # The folder the action should deploy. | |
| clean: true |