File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 54
54
- name : Build Project
55
55
run : cmake --build build/release
56
56
57
+ - name : List WASM Directory
58
+ run : ls -l web/static/wasm
59
+
57
60
- name : Install Hugo CLI
58
61
run : |
59
62
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
84
87
--minify \
85
88
--baseURL "${{ secrets.PRODUCTION_URL }}"
86
89
90
+ - name : List Hugo Build Output
91
+ run : ls -l web/public
92
+
87
93
- name : Upload artifact
88
94
uses : actions/upload-pages-artifact@v2
89
95
with :
Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ else ()
35
35
# Link the executable to the necessary libraries
36
36
target_link_libraries (main_executable nn_lib )
37
37
38
- # Set different output names for different configurations
39
- set_target_properties (main_executable PROPERTIES OUTPUT_NAME "wasm" DEBUG_POSTFIX "_debug" )
38
+ # Set output name
39
+ set_target_properties (main_executable PROPERTIES OUTPUT_NAME "wasm" )
40
40
41
41
# Release flags
42
42
target_link_options (main_executable PRIVATE "SHELL:-s NO_EXIT_RUNTIME=1" )
You can’t perform that action at this time.
0 commit comments