Skip to content

chore: update next-intl configuration #2

chore: update next-intl configuration

chore: update next-intl configuration #2

Workflow file for this run

name: 🚀 Deploy website on push
on:
push:
branches:
- main
permissions:
contents: write
jobs:
web-deploy:
name: 🎉 Deploy
runs-on: ubuntu-latest
env:
FTP_HOST: ${{ secrets.ftp_host }}
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v4
with:
# 获取所有标记和分支的所有历史记录(updatetime 必须,否则每次都会变化)
fetch-depth: 0
# 如果你文档需要 Git 子模块,取消注释下一行
# submodules: true
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build website
run: yarn build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
# 这是文档部署到的分支名称
branch: gh-pages
folder: out
# 如果配置了 FTP 服务器密钥,才会执行本步骤,将页面静态文件同步到服务器
- name: 📂 Sync files
if: env.FTP_HOST != ''
uses: SamKirkland/FTP-Deploy-Action@v4.3.5
with:
local-dir: out/
server: ${{ secrets.ftp_host }}
username: ${{ secrets.ftp_username }}
password: ${{ secrets.ftp_password }}
port: ${{ secrets.ftp_port }} # 建议更改默认的 21 端口
timeout: 600000