Skip to content

Update .gitignore

Update .gitignore #6

Workflow file for this run

name: pages gen
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
ref: main
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'npm'
- run: npm ci
- name: generate
run: npm run gen
- uses: stefanzweifel/git-auto-commit-action@v4