From 37d96de468f24bfcde0278aed46ccf92fb0bc881 Mon Sep 17 00:00:00 2001 From: JP-Ellis Date: Tue, 5 Mar 2024 19:59:40 +1100 Subject: [PATCH] chore(ci): another build pipeline fix For some reason, the rebase done as part of #567 really did not go well, and some entire steps were inadvertently replaced. It is my bad, and here's another (and hopefully final) fix. Ref: #567 Signed-off-by: JP-Ellis --- .github/workflows/build.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a809edc4fc..633924a0c6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -188,7 +188,14 @@ jobs: contents: write steps: - - uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # v4 + - name: Checkout code + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + with: + # Fetch all tags + fetch-depth: 0 + + - name: Download wheels and sdist + uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # v4 with: path: wheels merge-multiple: true