Skip to content

Commit 54b6736

Browse files
sshaderConvex, Inc.
authored and
Convex, Inc.
committed
Update OSS precompile to also build an exported version of self-hosted (#35741)
This creates a `dashboard.zip` alongside the backend binaries. The `dashboard.zip` once unzipped can be used to run the self hosted version with `npx serve dashboard` I got a successful run of this over [here](https://github.com/get-convex/convex-backend/actions/runs/13978936501) on nearly identical code. There's some repetition between the two jobs, but didn't seem super worth it to split things into separate actions yet. GitOrigin-RevId: ebc76d536fbf0e0a69ea51f87aa8dfe58556a302
1 parent 07dcc83 commit 54b6736

File tree

1 file changed

+69
-1
lines changed

1 file changed

+69
-1
lines changed

.github/workflows/precompile.yml

+69-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,75 @@ on:
66
workflow_dispatch:
77

88
jobs:
9-
release:
9+
release_dashboard:
10+
name: Build Convex Dashboard
11+
runs-on: [self-hosted, aws, x64, xlarge]
12+
steps:
13+
- name: Check out code
14+
uses: actions/checkout@v4
15+
16+
- name: Cache pnpm artifacts
17+
uses: runs-on/cache@v4
18+
env:
19+
AWS_REGION: ${{ vars.AWS_REGION }}
20+
RUNS_ON_S3_BUCKET_CACHE: ${{ vars.RUNS_ON_S3_BUCKET_CACHE }}
21+
with:
22+
path: |
23+
npm-packages/common/temp/build-cache
24+
npm-packages/common/temp/pnpm-store
25+
key: pnpm-cache-${{
26+
hashFiles('npm-packages/common/config/rush/pnpm-lock.yaml') }}-2
27+
restore-keys: pnpm-cache-
28+
29+
- name: Node setup
30+
uses: actions/setup-node@v4
31+
with:
32+
node-version-file: ".nvmrc"
33+
34+
- name: Install just
35+
uses: extractions/setup-just@v2
36+
env:
37+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38+
39+
- name: NPM install globals
40+
run: npm ci --prefix scripts
41+
42+
- name: Rush install
43+
run: |
44+
just rush install
45+
46+
- name: Build dashboard dependencies
47+
run: |
48+
just rush build -T dashboard-self-hosted
49+
50+
- name: Build dashboard
51+
run: |
52+
cd npm-packages/dashboard-self-hosted && npm run build:export
53+
54+
- name: Zip output
55+
run: |
56+
cd npm-packages/dashboard-self-hosted/out && zip -r ../../../dashboard.zip .
57+
58+
- name: Precompute release name
59+
id: release_name
60+
shell: bash
61+
run: |
62+
echo "RELEASE_NAME=$(date +'%Y-%m-%d')-$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
63+
64+
- name: Create Upload Precompiled Artifacts
65+
id: create_release
66+
uses: softprops/action-gh-release@v2
67+
with:
68+
files: |
69+
dashboard.zip
70+
tag_name: precompiled-${{ steps.release_name.outputs.RELEASE_NAME }}
71+
name: Precompiled ${{ steps.release_name.outputs.RELEASE_NAME }}
72+
draft: false
73+
prerelease: true
74+
env:
75+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
76+
77+
release_backend:
1078
strategy:
1179
fail-fast: false
1280
matrix:

0 commit comments

Comments
 (0)