From 53f6013d1d208b8e2a8e92fbf5922462fc2fbd15 Mon Sep 17 00:00:00 2001 From: ll-nick <68419636+ll-nick@users.noreply.github.com> Date: Sat, 22 Nov 2025 15:52:47 +0100 Subject: [PATCH] Change order of repo clone and artifact download --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 595922b..1d9e78f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -80,16 +80,16 @@ jobs: needs: [build-linux, build-macos] runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v4 - with: - merge-multiple: true - path: dist - - uses: actions/checkout@v4 with: fetch-depth: 0 fetch-tags: true + - uses: actions/download-artifact@v4 + with: + merge-multiple: true + path: dist + - name: Generate release notes id: release_notes run: |