From 1f46742a6637ca4b704931fc4fd98bef8c261ba9 Mon Sep 17 00:00:00 2001 From: Remco Vermeulen Date: Mon, 11 Dec 2023 12:15:48 -0800 Subject: [PATCH] Use the PR sha for the correct file artifacts Artifacts retrieved from the repository should be retrieved from the correct HEAD sha. This undoes the commit d2a490 that ensured we always used to the script on main. --- .github/workflows/update-release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/update-release.yml b/.github/workflows/update-release.yml index 67666bbf39..912d5aa429 100644 --- a/.github/workflows/update-release.yml +++ b/.github/workflows/update-release.yml @@ -31,6 +31,7 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 # We need the full history to compute the changelog + ref: ${{ inputs.head-sha }} - name: Install Python uses: actions/setup-python@v4