From 73db39703e295501e5ac0d8a4889a59b3a04d20b Mon Sep 17 00:00:00 2001 From: Barabazs <31799121+Barabazs@users.noreply.github.com> Date: Thu, 10 Apr 2025 09:34:24 +0200 Subject: [PATCH] chore: update GitHub Actions workflow to use dynamic ref for checkout --- .github/workflows/build-and-release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index e4da6af..63ad02d 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -10,6 +10,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + ref: ${{ github.ref_name }} - name: Set up Python uses: actions/setup-python@v5