Proper icon stuff #17
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: Deploy GitHub Pages | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # Build everything | |
| - name: Use Node.js 20 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20.19.0' | |
| # Build core library | |
| - name: Install Build deps and build library | |
| run: | | |
| cd Build | |
| npm ci | |
| npm run build | |
| # Build Docs site | |
| - name: Install Docs deps and build docs | |
| run: | | |
| cd Docs | |
| npm ci | |
| npm run build | |
| # Prepare full page deploy directory | |
| - name: Prepare Pages assets | |
| run: | | |
| mkdir -p gh-pages-root | |
| # Docs (site) go to root | |
| cp -r Docs/site/* gh-pages-root/ | |
| # Demo (folder) | |
| mkdir -p gh-pages-root/demo | |
| cp -r Demo/* gh-pages-root/demo/ | |
| mkdir -p gh-pages-root/demo/dist | |
| cp -r Build/dist/* gh-pages-root/demo/dist/ | |
| # Playground (folder) | |
| mkdir -p gh-pages-root/playground | |
| cp Demo/playground.html gh-pages-root/playground/index.html | |
| mkdir -p gh-pages-root/playground/dist | |
| cp -r Build/dist/* gh-pages-root/playground/dist/ | |
| - name: Deploy all assets to gh-pages | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: gh-pages-root | |
| keep_files: false # Or true, depending | |
| commit_message: Deploy Docs, Demo, Playground |