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
|
--release
|
||||||
--bin kubi
|
--bin kubi
|
||||||
--bin kubi-server
|
--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
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: linux-x64-release
|
name: linux-x64-release
|
||||||
path: |
|
path: ./artifact/linux/*
|
||||||
./target/release/kubi
|
if-no-files-found: error
|
||||||
./target/release/kubi-server
|
|
||||||
./assets
|
|
||||||
|
|
Loading…
Reference in a new issue