Skip to content

[r] changed queries from texts to posts #29

[r] changed queries from texts to posts

[r] changed queries from texts to posts #29

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
paths:
- 'web/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '22'
- name: Install dependencies
run: npm install --prefix web
- name: Build the project
env:
VITE_IP_ADDRESS: ${{ secrets.BACK_IP }}
run: npm run build --prefix web
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./web/dist