mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-09 17:18:41 -06:00
fix artifact structure
This commit is contained in:
parent
4ccb354e24
commit
70effb9866
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue