From 305eb5e950c2dcc9bf9c76701a6d52b04fe7b124 Mon Sep 17 00:00:00 2001 From: Alex Hadley Date: Sun, 16 Jun 2024 21:28:22 -0700 Subject: [PATCH] Update publish.yml workflow --- .github/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b17f461..1f3e190 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -7,7 +7,7 @@ on: inputs: ref_override: description: "Build from the specified git ref" - required: false + required: true type: string env: @@ -20,6 +20,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + ref: ${{ inputs.ref_override }} - name: Install Poetry run: pipx install poetry==${{ env.POETRY_VERSION }}