From 488af4ba75b6710e6d9921de59403e19d2095f33 Mon Sep 17 00:00:00 2001 From: Matt Hess Date: Mon, 29 Dec 2025 14:40:19 +0000 Subject: [PATCH] Fix artifact task order issue --- .github/workflows/release.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4ee6707..24ae683 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -304,15 +304,16 @@ jobs: needs: [build-linux-x64, build-linux-aarch64, build-linux-riscv64, build-macos-x64, build-macos-aarch64, build-windows-x64] runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v4 - with: - path: artifacts - - - name: Create source archive + - name: Checkout source uses: actions/checkout@v4 with: submodules: recursive - + + - name: Download artifacts + uses: actions/download-artifact@v4 + with: + path: artifacts + - name: Package source run: | cd ..