From e84cd815e4d33cd9d7d7c0e853ee517b8e648e42 Mon Sep 17 00:00:00 2001 From: paperspace <29749331+aarnphm@users.noreply.github.com> Date: Mon, 27 May 2024 15:59:09 +0000 Subject: [PATCH] fix(releases): make sure to use correct hash Signed-off-by: paperspace <29749331+aarnphm@users.noreply.github.com> --- .github/workflows/create-releases.yml | 5 +++-- .github/workflows/release-notes.yml | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/create-releases.yml b/.github/workflows/create-releases.yml index d4fa4dd7..ac6428a5 100644 --- a/.github/workflows/create-releases.yml +++ b/.github/workflows/create-releases.yml @@ -88,9 +88,10 @@ jobs: token: ${{ secrets.OPENLLM_PAT }} # NOTE: Keep this section in sync with build-pypi.yml - name: Download Python artifacts - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # ratchet:actions/download-artifact@v3 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # ratchet:actions/download-artifact@v4 with: - name: python-artefacts + pattern: python-artefacts-* + merge-multiple: true path: dist - name: Smoke test compiled artefacts run: ls -R dist diff --git a/.github/workflows/release-notes.yml b/.github/workflows/release-notes.yml index 2eab18b7..33dacb24 100644 --- a/.github/workflows/release-notes.yml +++ b/.github/workflows/release-notes.yml @@ -41,13 +41,13 @@ jobs: merge-multiple: true path: dist - name: Download binaries - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # ratchet:actions/download-artifact@v3 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # ratchet:actions/download-artifact@v4 with: pattern: standalone-* merge-multiple: true path: archives - name: Download standalone MacOS - uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # ratchet:actions/download-artifact@v3 + uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # ratchet:actions/download-artifact@v4 with: pattern: staged-* merge-multiple: true