Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,13 @@ jobs:

# --- Release-branch only: npm tarball + Docker image ---

# Build dashboard assets into opentower/public before packing.
# bun pm pack does NOT run prepublishOnly, so we must build explicitly.
- name: Build dashboard
if: startsWith(github.ref, 'refs/heads/release/')
run: bun run build
working-directory: packages/opentower

# Pack and upload the npm tarball.
- name: Pack tarball
if: startsWith(github.ref, 'refs/heads/release/')
Expand Down
Loading