bfc114bec3
- 将前端包管理切换为 `pnpm`,新增工作区与锁文件,并同步更新 CI 与 Docker 构建流程。 - 引入 `tiptap` 重构邮件正文编辑器,支持预览、富文本样式、链接/图片编辑与日程卡片插入。 - 发送与定时发送新增确认提示,补充空主题、空正文和附件提醒。 - 更新 `README.md` 与 `SHADCN_RULES.md` 中的安装与检查命令。
149 lines
3.6 KiB
YAML
149 lines
3.6 KiB
YAML
name: CI and Docker
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
tags:
|
|
- "v*"
|
|
paths-ignore:
|
|
- "**/*.md"
|
|
- "deploy/.env.example"
|
|
pull_request:
|
|
paths-ignore:
|
|
- "**/*.md"
|
|
- "deploy/.env.example"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
PLATFORMS: linux/amd64
|
|
|
|
jobs:
|
|
checks:
|
|
name: Check web and api
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 10.28.2
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
cache: pnpm
|
|
cache-dependency-path: pnpm-lock.yaml
|
|
|
|
- name: Install web dependencies
|
|
run: pnpm install --frozen-lockfile --filter lanqin-email-web...
|
|
|
|
- name: Check shadcn/ui usage
|
|
run: pnpm --dir apps/web run check:shadcn
|
|
|
|
- name: Build web
|
|
run: pnpm --dir apps/web run build
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: apps/api/go.mod
|
|
cache-dependency-path: apps/api/go.sum
|
|
|
|
- name: Test api
|
|
working-directory: apps/api
|
|
run: go test ./...
|
|
|
|
docker:
|
|
name: Build and publish ${{ matrix.name }}
|
|
runs-on: ubuntu-latest
|
|
needs: checks
|
|
if: github.event_name != 'pull_request'
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- name: all-in-one
|
|
suffix: ""
|
|
context: .
|
|
file: ./deploy/all-in-one/Dockerfile
|
|
- name: api
|
|
suffix: -api
|
|
context: .
|
|
file: ./deploy/api.Dockerfile
|
|
- name: web
|
|
suffix: -web
|
|
context: .
|
|
file: ./deploy/web.Dockerfile
|
|
- name: postfix
|
|
suffix: -postfix
|
|
context: ./deploy/postfix
|
|
file: ./deploy/postfix/Dockerfile
|
|
- name: dovecot
|
|
suffix: -dovecot
|
|
context: ./deploy/dovecot
|
|
file: ./deploy/dovecot/Dockerfile
|
|
- name: rspamd
|
|
suffix: -rspamd
|
|
context: ./deploy/rspamd
|
|
file: ./deploy/rspamd/Dockerfile
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
driver: docker
|
|
|
|
- name: Login to GHCR
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Prepare image name
|
|
id: image
|
|
shell: bash
|
|
run: |
|
|
image="${REGISTRY}/${GITHUB_REPOSITORY}${{ matrix.suffix }}"
|
|
echo "name=${image,,}" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Docker metadata
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: ${{ steps.image.outputs.name }}
|
|
tags: |
|
|
type=raw,value=latest,enable={{is_default_branch}}
|
|
type=ref,event=branch
|
|
type=ref,event=tag
|
|
type=sha,prefix=sha-
|
|
labels: |
|
|
org.opencontainers.image.title=LanQin Email ${{ matrix.name }}
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: ${{ matrix.context }}
|
|
file: ${{ matrix.file }}
|
|
platforms: ${{ env.PLATFORMS }}
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|