From 521f4dc365d6ba648327895a6ce592d3726f412d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=89=8B=E7=93=9C=E4=B8=80=E5=8D=81=E9=9B=AA?= Date: Thu, 13 Nov 2025 20:02:42 +0800 Subject: [PATCH] Include Windows Node shell in release workflow Adds NapCat.Shell.Windows.Node to the release process by updating dependencies, packaging steps, and release artifacts in auto-release.yml. --- .github/workflows/auto-release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index 9c8d4671..365c0e5e 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -157,7 +157,7 @@ jobs: path: NapCat.Shell.Windows.Node.zip release-napcat: - needs: [Build-LiteLoader, Build-Shell] + needs: [Build-LiteLoader, Build-Shell, Download-QNX64] runs-on: ubuntu-latest steps: - name: Checkout @@ -173,6 +173,7 @@ jobs: cd artifacts [ -d NapCat.Framework ] && zip -qr ../NapCat.Framework.zip -r NapCat.Framework [ -d NapCat.Shell ] && zip -qr ../NapCat.Shell.zip -r NapCat.Shell + [ -d NapCat.Shell.Windows.Node ] && zip -qr ../NapCat.Shell.Windows.Node.zip -r NapCat.Shell.Windows.Node cd .. - name: Generate release note via OpenRouter @@ -266,6 +267,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} body_path: CHANGELOG.md files: | + NapCat.Shell.Windows.Node.zip NapCat.Framework.zip NapCat.Shell.zip draft: true