We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb6627c commit dcc43abCopy full SHA for dcc43ab
1 file changed
.github/workflows/build_linux_only.yml
@@ -34,9 +34,19 @@ jobs:
34
working-directory: ./bisheng-telemetry-search/telemetry_search
35
run: |
36
pwd
37
- ls -lh
38
python build_all.py --delete-source
39
+ mkdir ../../build_output
+ rm -rf ./build
40
+ cp -r ./* ../../build_output/
41
+ ls -lh ../../build_output/
42
+
43
+ - name: Upload x86_64 build artifacts
44
+ uses: actions/upload-artifact@v3
45
+ with:
46
+ name: bisheng-telemetry-search-x86_64
47
+ path: ./build_output/*
48
49
50
51
52
0 commit comments