File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change 41
41
path : target/release/frequency
42
42
retention-days : 3
43
43
44
+ - name : Upload WASM Build Artifacts
45
+ uses : actions/upload-artifact@v4
46
+ with :
47
+ name : wasm-artifacts
48
+ path : target/release/wbuild
49
+ retention-days : 3
50
+
44
51
run-benchmarks :
45
52
if : github.repository == 'frequency-chain/frequency'
46
53
name : Run Benchmarks
@@ -61,12 +68,21 @@ jobs:
61
68
with :
62
69
ref : ${{github.event.inputs.branch}}
63
70
71
+ - name : Create Target Directory
72
+ run : mkdir -p target/release
73
+
64
74
- name : Download Benchmark Binary
65
75
uses : actions/download-artifact@v4
66
76
with :
67
77
name : benchmark-binary
68
78
path : target/release
69
79
80
+ - name : Download WASM Build Artifacts
81
+ uses : actions/download-artifact@v4
82
+ with :
83
+ name : wasm-artifacts
84
+ path : target/release/wbuild
85
+
70
86
- name : Make Binary Executable
71
87
run : chmod +x target/release/frequency
72
88
You can’t perform that action at this time.
0 commit comments