File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,13 @@ jobs:
19
19
- name : Download renamer
20
20
run : curl -sSf https://raw.githubusercontent.com/memflow/memflowup/master/target_rename.sh > target_rename.sh
21
21
- name : Build artifacts
22
- run : cargo build --workspace --all-features --verbose --target x86_64-unknown-linux-gnu
22
+ run : cargo build --workspace --all-features --verbose
23
23
- name : Rename and collect artifacts
24
24
id : artifacts
25
- run : echo "::set-output name=artifact::$(sh ./target_rename.sh "x86_64-unknown-linux-gnu" | head -n 1)"
25
+ run : |
26
+ export F="libmemflow_kvm.x86_64.so"
27
+ mv target/release/libmemflow_kvm.so $F
28
+ echo "::set-output name=artifact::$F"
26
29
- name : Upload build artifacts
27
30
uses : softprops/action-gh-release@v1
28
31
with :
You can’t perform that action at this time.
0 commit comments