Skip to content

Comment out deployment part #3

Comment out deployment part

Comment out deployment part #3

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