Skip to content

automatic deployment #1

automatic deployment

automatic deployment #1

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- deploy
jobs:
build_site:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm install
- name: build
env:
BASE_PATH: '/${{ github.event.repository.name }}'
run: |
npm run build
- name: Deploy 🚀
uses: peaceiris/actions-gh-pages@v3 # This action will handle the deployment to gh-pages
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
publish_branch: gh-pages
user_name: "github-actions[bot]"
user_email: "github-actions[bot]@users.noreply.github.com"
commit_message: "Deploy to GitHub Pages"