From 707fddda79613a76c1dbe457724ef3f237f78cbc Mon Sep 17 00:00:00 2001 From: slhaf Date: Mon, 11 May 2026 18:16:40 +0800 Subject: [PATCH] fix(release): checkout repository before creating ctl release --- .github/workflows/release-ctl.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release-ctl.yml b/.github/workflows/release-ctl.yml index 6c30eccc..0e806e97 100644 --- a/.github/workflows/release-ctl.yml +++ b/.github/workflows/release-ctl.yml @@ -130,6 +130,11 @@ jobs: echo "Ctl release tag: ${TAG}" echo "Ctl release version: ${VERSION}" + - name: Checkout release source + uses: actions/checkout@v4 + with: + ref: ${{ steps.release.outputs.tag }} + - name: Download release artifacts uses: actions/download-artifact@v4 with: