Merge pull request #418 from RAIRLab/dependabot/npm_and_yarn/all-npm-… #228
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: Build and Deploy Peirce my Heart | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
Build_and_Deploy_Application: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install NPM deps | |
run: npm ci | |
- name: Documentation Generation | |
run: npm run build-docs | |
- name: Vite build | |
run: npm run build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build | |