Skip to content

Added GitHub Pages workflow #1

Added GitHub Pages workflow

Added GitHub Pages workflow #1

Workflow file for this run

name: Build and Deploy to GitHub Pages
on:
push:
branches:
- master
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set PUBLIC_URL in .env
run: |
REPO_NAME=$(echo $GITHUB_REPOSITORY | cut -d'/' -f2)
echo "PUBLIC_URL=https://$(echo $GITHUB_REPOSITORY | cut -d'/' -f1).github.io/$REPO_NAME/" >> .env
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: ".tool-versions"
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies and build
run: |
npm install
python -m pip install --upgrade pip
python -m pip install poetry
npm run dev:build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build