From d8e349254557bf309e5da6639970d7e3b29f0305 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Wed, 25 Dec 2024 19:25:03 +0530 Subject: [PATCH] chore(actions): checkout code first in `get-version` job --- .github/workflows/debug.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index 8ff9982..f85a44a 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -10,6 +10,9 @@ jobs: outputs: version: v${{ steps.get_version.outputs.value }}+rev.g${{ steps.trim_sha.outputs.trimmed_sha }} steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Get package version uses: SebRollen/toml-action@v1.2.0 id: get_version