|
6 | 6 | workflow_dispatch:
|
7 | 7 |
|
8 | 8 | 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: |
10 | 78 | strategy:
|
11 | 79 | fail-fast: false
|
12 | 80 | matrix:
|
|
0 commit comments