Skip to content

update follow videos #26

update follow videos

update follow videos #26

name: Deploy to GitHub Pages
on:
push:
branches:
- main # Set this to your default branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '14'
- run: npm ci
- run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./dist # Adjust this to your build output directory
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v3