Skip to content

πŸ’„ improve typography #28

πŸ’„ improve typography

πŸ’„ improve typography #28

Workflow file for this run

name: ci
on:
push:
branches:
- main
workflow_dispatch:
jobs:
gh-pages:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v3
- name: Install pnpm πŸ“¦
uses: pnpm/action-setup@v4
with:
version: 8
run_install: false
- name: Setup NodeJS πŸ’š
uses: actions/setup-node@v3
with:
node-version: 20
cache: pnpm
- name: Install Deps 🧩
run: pnpm install
- name: Build πŸ”¨
run: pnpm run build
- name: Add CNAME Entry 🌐
run: echo "dvjn.is-not-a.dev" > ./dist/CNAME
- name: Deploy πŸš€
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./dist
commit_message: ":rocket: ${{ github.event.head_commit.message }}"