Skip to content

Commit 73f0a0f

Browse files
committed
fix: update release.yml to use build/exports/ output path
1 parent a72e741 commit 73f0a0f

1 file changed

Lines changed: 6 additions & 17 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ jobs:
4343

4444
- name: Create release archive
4545
run: |
46-
cd .clarvia-output
47-
tar -czf ../clarvia-graph-${{ github.ref_name }}.tar.gz .
48-
cd ..
46+
cd build/exports
47+
tar -czf ../../clarvia-graph-${{ github.ref_name }}.tar.gz .
48+
cd ../..
4949
5050
- name: Create GitHub Release
5151
uses: softprops/action-gh-release@v2
@@ -56,21 +56,10 @@ jobs:
5656
## Clarvia Graph ${{ github.ref_name }}
5757
5858
This release contains:
59-
- `graph-export.json` — full graph data as JSON
59+
- `json/` — full graph data as JSON
6060
- `web/manifest.json` — web runtime manifest
6161
- `web/intake/*.json` — intake question sets per life event
6262
- `web/runtime/*.json` — pre-compiled runtime data per life event
6363
64-
### Usage
65-
66-
Download and extract `clarvia-graph-${{ github.ref_name }}.tar.gz`.
67-
68-
**For workflow-web integration:**
69-
```bash
70-
tar -xzf clarvia-graph-${{ github.ref_name }}.tar.gz -C public/clarvia-data/
71-
```
72-
73-
**For API/analysis:**
74-
```bash
75-
cat graph-export.json | jq '.stats'
76-
```
64+
The web export zip (`clarvia-web-export-*.zip`) is attached separately
65+
by the Release Web Export workflow.

0 commit comments

Comments
 (0)