chore(deps): update react monorepo to v19 #290
Workflow file for this run
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: Generate website | |
on: | |
- push | |
- workflow_dispatch | |
jobs: | |
website: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: danysk/[email protected] | |
- uses: olafurpg/setup-scala@v14 | |
with: | |
java-version: [email protected] | |
- name: Generate Scaladoc | |
run: sbt doc | |
- name: Generate Documentation website | |
run: | | |
cd docs | |
npm install | |
npm run build | |
mv ../api/ ./build/ | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
folder: docs/build # The folder the action should deploy. |