From 3bec0a78c87b93e5568035b02c51de520f1641ff Mon Sep 17 00:00:00 2001 From: arthurkehrwald <50906979+arthurkehrwald@users.noreply.github.com> Date: Mon, 24 Feb 2025 11:07:52 +0100 Subject: [PATCH] Fix missing uploads --- .github/workflows/build.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 08a75344..a7aa42a9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,10 +17,9 @@ jobs: run: | dotnet build -c Release - run: | - mkdir -p tmp/Plugins - cp -r Plugins tmp/Plugins - mkdir -p tmp/YetAnotherHttpHandler - cp -r YetAnotherHttpHandler tmp/YetAnotherHttpHandler + mkdir -p tmp + cp -r Plugins tmp + cp -r YetAnotherHttpHandler tmp - uses: actions/upload-artifact@v4 with: name: Plugins