Skip to content

add translations

add translations #73

Workflow file for this run

name: Deploy
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
- name: Enable Corepack
run: corepack enable
- name: Install
run: yarn --no-immutable
- name: Build
run: yarn build
- name: Deploy
if: ${{ github.repository == 'satorijs/satorijs.github.io' && github.ref == 'refs/heads/main' }}
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .vitepress/dist
publish_branch: pages
force_orphan: true