From a5c85d12b10bcb9fcfec4c0bf3376c804cbb11da Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Wed, 30 Apr 2025 17:02:51 +0100 Subject: [PATCH] ci: Explicitly checkout ref in release workflow --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 814aacdc5..56007e622 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,6 +15,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 + with: + ref: ${{ github.ref }} # Explicitly checkout the triggering tag/ref - name: Set up Node.js uses: actions/setup-node@v4