diff --git a/.github/workflows/build_binary.yml b/.github/workflows/build_binary.yml index 0ac6408..6f70fc2 100644 --- a/.github/workflows/build_binary.yml +++ b/.github/workflows/build_binary.yml @@ -43,6 +43,7 @@ jobs: shell: pwsh run: | $content = Get-Content -Raw build/env.bat + echo "$content" $m = [regex]::Match($content, 'PACKAGE_VERSION=(.+)') $v = if ($m.Success) { $m.Groups[1].Value.Trim() } else { '0.0.0' } echo "PACKAGE_VERSION=$v" >> $env:GITHUB_OUTPUT diff --git a/jsr/jsr.json b/jsr/jsr.json index 6de18a5..2024c9d 100644 --- a/jsr/jsr.json +++ b/jsr/jsr.json @@ -1,7 +1,6 @@ { "name": "@serial/cpp-bindings-windows", "version": "", - "license": "./LICENSE", "description": "C++ Windows Bindings for the serial library", "exports": { "./bin": "./src/bin/index.ts"