Build and deploy to pages #590
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: Build and deploy to pages | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - main | |
| - research | |
| pull_request: | |
| branches: | |
| - develop | |
| - main | |
| - research | |
| schedule: | |
| - cron: '0 */4 * * *' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: create env file | |
| run: | | |
| touch .env | |
| echo SUPABASE_URL=${{ secrets.SUPABASE_URL }} >> .env | |
| echo SUPABASE_KEY=${{ secrets.SUPABASE_KEY }} >> .env | |
| - name: Install dependencies and build | |
| env: | |
| GITHUB_ACTIONS_BUILD: true | |
| run: | | |
| npm ci | |
| npm run build:all | |
| npm run postbuild | |
| - name: Deploy to GitHub pages | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| publish_dir: ./build | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |