Skip to content

Update gh-pages.yml #14

Update gh-pages.yml

Update gh-pages.yml #14

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main # Change to the branch you want to use
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Configure Git Identity
run: |
git config --global user.email "[email protected]"
git config --global user.name "solarpush"
- name: Install gh-pages
run: npm install -g [email protected]
- name: Deploy
run: npx gh-pages -d build
env:
CI: false