From 94e69a9ade1216a1067004ef79a93338d0346cd3 Mon Sep 17 00:00:00 2001 From: mesheets <16882600+mesheets@users.noreply.github.com> Date: Mon, 1 Jul 2024 17:32:37 -0400 Subject: [PATCH] Align artifact names; separate HTML/JS files --- .github/workflows/nqc_ci.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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