From 0ae4f63595c906194cb0db0e5dc8cf26cdf15656 Mon Sep 17 00:00:00 2001 From: Cell <1024@lruihao.cn> Date: Tue, 30 Dec 2025 12:25:54 +0800 Subject: [PATCH] chore(workflow): add step to split theme configuration and package it for release --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1550f291..a76d514c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,6 +22,12 @@ jobs: node-version-file: .nvmrc cache: pnpm + - name: Split theme configuration + run: | + pnpx fixit-cli split hugo.toml + tar -zcvf config.tar.gz config + tree config + - name: Generate release notes run: | pnpm install --frozen-lockfile @@ -33,3 +39,5 @@ jobs: with: draft: true body_path: CHANGELOG.md + files: | + config.tar.gz