diff --git a/.github/workflows/build-release-artifacts.yaml b/.github/workflows/build-release-artifacts.yaml index eaceaedf..ed36fae9 100644 --- a/.github/workflows/build-release-artifacts.yaml +++ b/.github/workflows/build-release-artifacts.yaml @@ -43,10 +43,10 @@ jobs: run: | cd /tmp/langbot_build_web/web npm install - npm run build + npx vite build - name: Package Output run: | - cp -r /tmp/langbot_build_web/web/out ./web + cp -r /tmp/langbot_build_web/web/dist ./web - name: Upload Artifact uses: actions/upload-artifact@v4 with: diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index a03f51ef..363acc0d 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -29,8 +29,8 @@ jobs: npm install -g pnpm pnpm install pnpm build - mkdir -p ../src/langbot/web/out - cp -r out ../src/langbot/web/ + mkdir -p ../src/langbot/web/dist + cp -r dist ../src/langbot/web/ - name: Install the latest version of uv uses: astral-sh/setup-uv@v6