Skip to content

Commit 282b234

Browse files
authored
Merge pull request #87 from NeuralNomadsAI/dev
Release 0.7.6 - Question tool fixes + Split test
2 parents 4ba088a + dfd3978 commit 282b234

27 files changed

Lines changed: 3397 additions & 147 deletions

.github/workflows/release-ui.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
workflow_dispatch: {}
6+
7+
permissions:
8+
contents: read
9+
10+
env:
11+
NODE_VERSION: 20
12+
13+
jobs:
14+
release-ui:
15+
if: ${{ github.ref == 'refs/heads/main' }}
16+
runs-on: ubuntu-24.04
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v4
20+
21+
- name: Setup Node
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: ${{ env.NODE_VERSION }}
25+
cache: npm
26+
27+
- name: Install dependencies
28+
run: npm ci --workspaces --include=optional
29+
30+
- name: Install Cloudflare worker deps
31+
run: npm ci
32+
working-directory: packages/cloudflare
33+
34+
- name: Build UI
35+
run: npm run build --workspace @codenomad/ui
36+
37+
- name: Publish UI zip + update manifest
38+
working-directory: packages/cloudflare
39+
env:
40+
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
41+
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
42+
CODENOMAD_R2_BUCKET: ${{ vars.CODENOMAD_R2_BUCKET }}
43+
run: npm run release:ui

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,9 @@ release/
77
.electron-vite/
88
out/
99
.dir-locals.el
10-
.opencode/bashOutputs/
10+
.opencode/bashOutputs/
11+
12+
# Local runtime artifacts
13+
.codenomad/
14+
.tmp/
15+
packages/cloudflare/.wrangler/

package-lock.json

Lines changed: 8 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codenomad-workspace",
3-
"version": "0.7.5",
3+
"version": "0.7.6",
44
"private": true,
55
"description": "CodeNomad monorepo workspace",
66
"workspaces": {

packages/cloudflare/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist/

0 commit comments

Comments
 (0)