From 6c106f90fb510ba0c106e299b87983bdef7f62d2 Mon Sep 17 00:00:00 2001 From: Jerry Jacobs Date: Fri, 26 Jul 2024 15:04:56 +0200 Subject: [PATCH] Fix CI artifact naming and dependency --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 00cd9a5..5714181 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,7 +47,7 @@ jobs: - name: Store release artifacts uses: actions/upload-artifact@v4 with: - name: dist-folder + name: dist-release path: | dist @@ -97,7 +97,7 @@ jobs: - name: Store release artifacts uses: actions/upload-artifact@v4 with: - name: dist-dll + name: dist-release-dll path: | dist @@ -116,12 +116,12 @@ jobs: - name: Download release artifacts uses: actions/download-artifact@v4 with: - name: dist + name: dist-release - name: Download release-dll artifacts uses: actions/download-artifact@v4 with: - name: dist-dll + name: dist-release-dll - name: List files run: "dir /A-D /S /B"