diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b3436a..6581c30 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,7 +56,7 @@ jobs: run: npm ci - name: Build Project - run: npm run build + run: npm run build -- --targets=node12-linux-x64,node12-macos-x64,node12-win-x64,node12-win-x86 - name: Upload PR Artifacts uses: actions/upload-artifact@v4 diff --git a/package.json b/package.json index 8d87701..10b7fe6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "beamup-cli", - "version": "1.3.0", + "version": "1.3.1", "bin": { "beamup": "./bin/index.js" }, @@ -10,9 +10,9 @@ }, "pkg": { "targets": [ - "linux-x64", - "macos-x64", - "win-x64" + "node12-linux-x64", + "node12-macos-x64", + "node12-win-x64" ], "outputPath": "build" },