Skip to content

Update auto.yml

Update auto.yml #32

Workflow file for this run

name: Build and Deploy to GitHub Pages
on:
push:
branches:
- develop
workflow_dispatch:
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts'
- name: Install dependencies
run: npm install
- name: Build for GitHub Pages
run: npm run build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: ./build