From 64af9e9e9217b1f9e3982accc374f0f42ab1039c Mon Sep 17 00:00:00 2001 From: Jeffery Date: Thu, 2 Jul 2026 18:16:23 +0800 Subject: [PATCH] =?UTF-8?q?fix(ci):=20=E4=B8=B2=E6=8E=A5=20build=E2=86=92t?= =?UTF-8?q?est=20=E7=9A=84=20VERSION=20=E8=BC=B8=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index ff15b99..760c352 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -8,6 +8,8 @@ jobs: runs-on: ubuntu env: VERSION: "0.0.0-beta.${{ gitea.run_number }}" + outputs: + version: ${{ env.VERSION }} steps: - name: Publishing Release uses: akkuman/gitea-release-action@${{ vars.ACTION_GITEA_RELEASE_VERSION }} @@ -20,8 +22,8 @@ jobs: name: 2. TEST runs-on: ubuntu needs: [build] - outputs: - message: ${{ steps.composite-template.outputs.message }} + env: + VERSION: ${{ needs.build.outputs.version }} steps: - name: Setup LLM CLI uses: https://gitea.jsc.idv.tw/actions/setup-${{ vars.ACTION_SETUP_LLM_CLI }}