Skip to content

Merge pull request #14 from muhashi/dependabot/npm_and_yarn/eslint-pl… #42

Merge pull request #14 from muhashi/dependabot/npm_and_yarn/eslint-pl…

Merge pull request #14 from muhashi/dependabot/npm_and_yarn/eslint-pl… #42

Workflow file for this run

name: Push to Github Pages
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: npm install
- name: Deploy with gh-pages
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npm run deploy -- -u "github-actions-bot <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}