From 70effb9866391f9efcdc241dd5037598de0ae047 Mon Sep 17 00:00:00 2001 From: griffi-gh Date: Wed, 17 May 2023 00:16:49 +0200 Subject: [PATCH] fix artifact structure --- .github/workflows/build.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 767cee9..091ce61 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,10 +25,14 @@ jobs: --release --bin kubi --bin kubi-server + - name: Create artifact + - run: | + mkdir artifact; + cp ./target/release/kubi ./artifact; + cp ./target/release/kubi-server ./artifact; + cp -r ./assets ./artifact; - uses: actions/upload-artifact@v3 with: name: linux-x64-release - path: | - ./target/release/kubi - ./target/release/kubi-server - ./assets + path: ./artifact/linux/* + if-no-files-found: error