Skip to content

feat(README): expand product highlights and main tech sections; impro… #20

feat(README): expand product highlights and main tech sections; impro…

feat(README): expand product highlights and main tech sections; impro… #20

Workflow file for this run

name: Deploy static content to Pages
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: write
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22.13
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build:gh-pages
- name: Deploy
id: deployment
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
commit_message: "Deploy ${{ github.sha }}"
enable_jekyll: false
force_orphan: true
keep_files: false
user_name: "GitHub Actions"
user_email: "jacko.eduard@gmail.com"