diff --git a/.github/workflows/nqc_ci.yml b/.github/workflows/nqc_ci.yml index 2d32f84..bf65e4c 100644 --- a/.github/workflows/nqc_ci.yml +++ b/.github/workflows/nqc_ci.yml @@ -26,7 +26,7 @@ jobs: - name: Archive native build artifacts uses: actions/upload-artifact@v4 with: - name: nqc-${{ matrix.os }}-native + name: nqc-native-${{ matrix.os }} path: build/bin/ - name: Archive WebAssembly build artifacts uses: actions/upload-artifact@v4 diff --git a/Makefile b/Makefile index 964ce0e..95027b8 100755 --- a/Makefile +++ b/Makefile @@ -94,7 +94,7 @@ ifneq (,$(strip $(findstring $(TARGETTYPE), WebAssembly))) CXX = emcc OBJ_SUBDIR_NAME = wobj EXEC_SUBDIR_NAME = wasm - EXEC_EXT = .html + EXEC_EXT = .{html,js} # Documentation for various Emscripten flags # - Full List: https://github.com/emscripten-core/emscripten/blob/main/src/settings.js