Skip to content

fix workflow branch name #1

fix workflow branch name

fix workflow branch name #1

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
jobs:
build-test-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set-up Node
uses: actions/setup-node@v1
with:
node-version: "21.x"
- run: npm install
- name: Deploy
uses: crazy-max/ghaction-github-pages@v1
with:
target_branch: gh-pages
build_dir: .
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_REPO_TOKEN }}