Skip to content

Commit 224c9b7

Browse files
committed
Added debugging steps in hugo.yml
1 parent 899228a commit 224c9b7

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/hugo.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ jobs:
5454
- name: Build Project
5555
run: cmake --build build/release
5656

57+
- name: List WASM Directory
58+
run: ls -l web/static/wasm
59+
5760
- name: Install Hugo CLI
5861
run: |
5962
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
@@ -84,6 +87,9 @@ jobs:
8487
--minify \
8588
--baseURL "${{ secrets.PRODUCTION_URL }}"
8689
90+
- name: List Hugo Build Output
91+
run: ls -l web/public
92+
8793
- name: Upload artifact
8894
uses: actions/upload-pages-artifact@v2
8995
with:

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ else ()
3535
# Link the executable to the necessary libraries
3636
target_link_libraries(main_executable nn_lib)
3737

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")
4040

4141
# Release flags
4242
target_link_options(main_executable PRIVATE "SHELL:-s NO_EXIT_RUNTIME=1")

0 commit comments

Comments
 (0)