diff options
-rw-r--r-- | .github/workflows/release.yml | 2 | ||||
-rw-r--r-- | package.json | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 28ca1e3..b1ca355 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,7 +72,7 @@ jobs: asset_content_type: application/octet-stream publish-release: - needs: [create-release] + needs: [build-release] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/package.json b/package.json index fa08ac3..0467622 100644 --- a/package.json +++ b/package.json @@ -383,7 +383,7 @@ "clean": "rm -rf ./node-modules ./server/node-modules ./client/node-modules", "foo": "(cd client && npm ci && cd ../); (cd server && npm c )", "test": "sh ./scripts/e2e.sh", - "build-binary": "tsc -b && pkg .", + "build-binary": "npm run web-compile && pkg .", "open-in-browser": "vscode-test-web --browser=none --extensionDevelopmentPath=. ." }, "devDependencies": { |