Comment out deployment part #3
Workflow file for this run
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: GitHub Pages Deploy | |
| on: | |
| push: | |
| branches: | |
| # - documentation | |
| - solve-deployment-issue | |
| # path: | |
| # - 'react-facet/**' | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| jobs: | |
| build_and_deploy: | |
| runs-on: ubuntu-latest | |
| name: Build and Deploy to GitHub Pages | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install dependencies | |
| run: yarn install --immutable | |
| - name: Build | |
| run: | | |
| cd react-facet | |
| yarn build | |
| # - name: Setup Pages | |
| # uses: actions/configure-pages@v5 | |
| # - name: Upload artifact | |
| # uses: actions/upload-pages-artifact@v3 | |
| # with: | |
| # # Upload entire repository | |
| # path: './react-facet/build' | |
| # - name: Deploy to GitHub Pages | |
| # id: deployment | |
| # uses: actions/deploy-pages@v4 |