diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7c392a..29623cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: - name: Build project run: | - ncc build --config release --log-level debug + ncc build --config release --build-source --log-level debug - name: Upload build artifacts uses: actions/upload-artifact@v4 diff --git a/Makefile b/Makefile index c6e2ca2..86f53a1 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ all: build # Build Steps build: - ncc build --config=$(CONFIG) --log-level $(LOG_LEVEL) + ncc build --config=$(CONFIG) --build-source --log-level $(LOG_LEVEL) install: ncc package install --package=$(PACKAGE) --skip-dependencies --reinstall -y --log-level $(LOG_LEVEL)