From 3d9700ade70fe6fe1a7848ddc2db75adfd661c9f Mon Sep 17 00:00:00 2001 From: Jeffery Date: Mon, 11 May 2026 08:13:13 +0000 Subject: [PATCH] feat: refactor version tagging step in review workflow for improved clarity --- .gitea/workflows/review.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/review.yaml b/.gitea/workflows/review.yaml index fb4b769..c590e7b 100644 --- a/.gitea/workflows/review.yaml +++ b/.gitea/workflows/review.yaml @@ -14,16 +14,16 @@ jobs: uses: https://gitea.jsc.idv.tw/actions/calculate-version@${{ vars.ACTION_CALCULATE_VERSION }} with: IS_BETA: true + - name: 標註版本號 + uses: akkuman/gitea-release-action@${{ vars.ACTION_RELEASE_VERSION }} + with: + name: code-review v${{ steps.version.outputs.version }} + tag_name: v${{ steps.version.outputs.version }} code-review: name: Code Review runs-on: ubuntu needs: [version] steps: - - name: 標註版本號 - uses: akkuman/gitea-release-action@${{ vars.ACTION_RELEASE_VERSION }} - with: - name: code-review v${{ needs.version.outputs.version }} - tag_name: v${{ needs.version.outputs.version }} - name: AI Code Review uses: https://gitea.jsc.idv.tw/jiantw83/code-review@v${{ needs.version.outputs.version }} with: