From c1202cda63059ae4ece2febef56d7eebd4a1d896 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Sun, 31 Aug 2025 11:52:42 +0800 Subject: [PATCH] fix: update GitHub release action to use correct commit SHA variable --- .github/workflows/dashboard_ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dashboard_ci.yml b/.github/workflows/dashboard_ci.yml index 8689abbb5..19e681b84 100644 --- a/.github/workflows/dashboard_ci.yml +++ b/.github/workflows/dashboard_ci.yml @@ -38,9 +38,9 @@ jobs: - name: Create GitHub Release uses: ncipollo/release-action@v1 with: - tag: ${{ env.COMMIT_SHA }} + tag: release-${{ github.sha }} owner: AstrBotDevs repo: astrbot-release-harbour - body: "Automated release from commit ${{ env.COMMIT_SHA }}" + body: "Automated release from commit ${{ github.sha }}" token: ${{ secrets.ASTRBOT_HARBOUR_TOKEN }} artifacts: "dashboard/dist.zip" \ No newline at end of file