From f938fca2c701ee26e0843a3a8a9eeb5158109828 Mon Sep 17 00:00:00 2001 From: mikiher Date: Sun, 17 Mar 2024 07:57:28 +0200 Subject: [PATCH] Fix bug in workflow_dispatch checkout step --- .github/workflows/unit-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 80b9855d..695696c6 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -22,7 +22,7 @@ jobs: - name: Checkout (workflow_dispatch) uses: actions/checkout@v4 with: - ref: inputs.ref + ref: ${{ inputs.ref }} if: github.event_name == 'workflow_dispatch' - name: Set up Node.js