Skip to content

refactor: remove the main title max width #9

refactor: remove the main title max width

refactor: remove the main title max width #9

Workflow file for this run

name: deploy
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy website to GitHub Pages
runs-on: ubuntu-latest
steps:
- name: Checkout Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Deploy to GH Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: 'dist'
cname: 'mlut.style'