-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
418 lines (383 loc) Β· 17.1 KB
/
Copy pathrelease.yml
File metadata and controls
418 lines (383 loc) Β· 17.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
name: Release
on:
workflow_dispatch:
inputs:
package:
description: "Package to release"
required: true
type: choice
options:
- capture-protocol
- capture-viewer
- core
- viewer
- editor
- nodes
- mcp
- ifc-converter
- cli
- all
bump:
description: "Version bump (beta publishes a prerelease on the beta dist-tag)"
required: true
type: choice
options:
- patch
- minor
- major
- beta
- none
dry-run:
description: "Dry run (no publish)"
required: false
type: boolean
default: false
jobs:
cli-smoke:
if: inputs.package == 'cli' || inputs.package == 'all'
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.14
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Smoke-test the packed CLI and editor runtime
env:
PASCAL_PORTABLE_BUILD: "1"
run: |
bun run build --filter editor
cd packages/cli
bun run build
bun run stage-runtime
bun run smoke-runtime
release:
needs: cli-smoke
if: ${{ !cancelled() && (needs.cli-smoke.result == 'success' || needs.cli-smoke.result == 'skipped') }}
runs-on: ubuntu-latest
environment: npm
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.14
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Configure git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Bump versions and sync inter-package references
run: |
BUMP=${{ inputs.bump }}
TARGET=${{ inputs.package }}
bump_version() {
local v=$1
if [ "$BUMP" = "beta" ]; then
if [[ "$v" =~ ^([0-9]+)\.([0-9]+)\.([0-9]+)-beta\.([0-9]+)$ ]]; then
echo "${BASH_REMATCH[1]}.${BASH_REMATCH[2]}.${BASH_REMATCH[3]}-beta.$((BASH_REMATCH[4]+1))"
return
fi
IFS='.' read -r MAJ _ _ <<< "${v%%-*}"
if [ "$MAJ" -lt 1 ]; then
echo "1.0.0-beta.1"
else
echo "$((MAJ+1)).0.0-beta.1"
fi
return
fi
IFS='.' read -r MAJ MIN PAT <<< "$v"
if [ "$BUMP" = "major" ]; then MAJ=$((MAJ+1)); MIN=0; PAT=0; fi
if [ "$BUMP" = "minor" ]; then MIN=$((MIN+1)); PAT=0; fi
if [ "$BUMP" = "patch" ]; then PAT=$((PAT+1)); fi
if [ "$BUMP" = "none" ]; then echo "$v"; return; fi
echo "$MAJ.$MIN.$PAT"
}
if [ "$BUMP" = "beta" ]; then
echo "NPM_TAG=beta" >> "$GITHUB_ENV"
else
echo "NPM_TAG=latest" >> "$GITHUB_ENV"
fi
# Track new versions in shell-local vars.
# NOTE: $GITHUB_ENV writes don't surface within the same step, so the
# peerDeps sync below must use shell vars, not env indirection.
declare -A NEW_VERSIONS
for pkg in capture-protocol core viewer capture-viewer editor nodes mcp ifc-converter cli; do
if [ "$TARGET" = "$pkg" ] || [ "$TARGET" = "all" ]; then
CUR=$(jq -r '.version' packages/$pkg/package.json)
NEW=$(bump_version "$CUR")
jq --arg v "$NEW" '.version = $v' packages/$pkg/package.json > tmp.json && mv tmp.json packages/$pkg/package.json
NEW_VERSIONS[$pkg]=$NEW
UPPER=$(echo "$pkg" | tr '[:lower:]' '[:upper:]' | tr '-' '_')
# Also export for the publish/commit/tag steps that follow.
echo "${UPPER}_VERSION=$NEW" >> $GITHUB_ENV
echo "Bumped @pascal-app/$pkg: $CUR β $NEW"
fi
done
# Sync inter-package references in dependencies, peerDependencies, and devDependencies.
# Anything that references a bumped @pascal-app/* package is updated to ^NEW.
for pkg in capture-protocol core viewer capture-viewer editor nodes mcp ifc-converter cli; do
FILE=packages/$pkg/package.json
for dep in capture-protocol core viewer capture-viewer editor nodes mcp ifc-converter cli; do
VAL="${NEW_VERSIONS[$dep]}"
[ -z "$VAL" ] && continue
jq --arg name "@pascal-app/$dep" --arg v "^$VAL" '
if .dependencies[$name] then .dependencies[$name] = $v else . end
| if .peerDependencies[$name] then .peerDependencies[$name] = $v else . end
| if .devDependencies[$name] then .devDependencies[$name] = $v else . end
' "$FILE" > tmp.json && mv tmp.json "$FILE"
done
done
echo "=== @pascal-app/* refs after sync ==="
for pkg in capture-protocol core viewer capture-viewer editor nodes mcp ifc-converter cli; do
echo "--- packages/$pkg/package.json ---"
jq '{ dependencies: (.dependencies // {} | with_entries(select(.key | startswith("@pascal-app/")))), peerDependencies: (.peerDependencies // {} | with_entries(select(.key | startswith("@pascal-app/")))), devDependencies: (.devDependencies // {} | with_entries(select(.key | startswith("@pascal-app/")))) }' packages/$pkg/package.json
done
# Version and dependency ranges changed after the frozen install.
# Refresh the lockfile so the release commit remains reproducible.
bun install
# A single-package release may depend on another package introduced
# by this monorepo. Refuse to publish an uninstallable package when
# that dependency is not part of this run and is absent from npm.
RELEASE_PACKAGES="capture-protocol core viewer capture-viewer editor nodes mcp ifc-converter cli"
if [ "$TARGET" != "all" ]; then
FILE="packages/$TARGET/package.json"
while IFS=$'\t' read -r DEP RANGE; do
SLUG="${DEP#@pascal-app/}"
case " $RELEASE_PACKAGES " in
*" $SLUG "*)
if ! npm view "$DEP@$RANGE" version >/dev/null 2>&1; then
echo "Missing required published dependency: $DEP@$RANGE"
echo "Release $SLUG first or use the all-package release."
exit 1
fi
;;
esac
done < <(
jq -r '
[(.dependencies // {}), (.peerDependencies // {})]
| add
| to_entries[]
| select(.key | startswith("@pascal-app/"))
| [.key, .value]
| @tsv
' "$FILE"
)
fi
- name: Build & publish capture protocol
if: inputs.package == 'capture-protocol' || inputs.package == 'all'
working-directory: packages/capture-protocol
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
bun run build
if [ "${{ inputs.dry-run }}" = "true" ]; then
echo "ποΈ Dry run β would publish @pascal-app/capture-protocol@$CAPTURE_PROTOCOL_VERSION"
npm publish --dry-run --access public --tag "$NPM_TAG"
elif npm view "@pascal-app/capture-protocol@$CAPTURE_PROTOCOL_VERSION" version >/dev/null 2>&1; then
echo "π¦ @pascal-app/capture-protocol@$CAPTURE_PROTOCOL_VERSION is already published; continuing release recovery"
else
npm publish --access public --tag "$NPM_TAG"
echo "π¦ Published @pascal-app/capture-protocol@$CAPTURE_PROTOCOL_VERSION"
fi
- name: Validate portable editor runtime
if: inputs.package == 'cli' || inputs.package == 'all'
env:
PASCAL_PORTABLE_BUILD: "1"
run: |
bun run build --filter editor
cd packages/cli
bun run build
bun run stage-runtime
bun run smoke-runtime
- name: Build & publish core
if: inputs.package == 'core' || inputs.package == 'all'
working-directory: packages/core
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
bun run build
if [ "${{ inputs.dry-run }}" = "true" ]; then
echo "ποΈ Dry run β would publish @pascal-app/core@$CORE_VERSION"
npm publish --dry-run --access public --tag "$NPM_TAG"
elif npm view "@pascal-app/core@$CORE_VERSION" version >/dev/null 2>&1; then
echo "π¦ @pascal-app/core@$CORE_VERSION is already published; continuing release recovery"
else
npm publish --access public --tag "$NPM_TAG"
echo "π¦ Published @pascal-app/core@$CORE_VERSION"
fi
- name: Build & publish viewer
if: inputs.package == 'viewer' || inputs.package == 'all'
working-directory: packages/viewer
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
bun run build
if [ "${{ inputs.dry-run }}" = "true" ]; then
echo "ποΈ Dry run β would publish @pascal-app/viewer@$VIEWER_VERSION"
npm publish --dry-run --access public --tag "$NPM_TAG"
elif npm view "@pascal-app/viewer@$VIEWER_VERSION" version >/dev/null 2>&1; then
echo "π¦ @pascal-app/viewer@$VIEWER_VERSION is already published; continuing release recovery"
else
npm publish --access public --tag "$NPM_TAG"
echo "π¦ Published @pascal-app/viewer@$VIEWER_VERSION"
fi
- name: Build & publish capture viewer
if: inputs.package == 'capture-viewer' || inputs.package == 'all'
working-directory: packages/capture-viewer
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
bun run build
if [ "${{ inputs.dry-run }}" = "true" ]; then
echo "ποΈ Dry run β would publish @pascal-app/capture-viewer@$CAPTURE_VIEWER_VERSION"
npm publish --dry-run --access public --tag "$NPM_TAG"
elif npm view "@pascal-app/capture-viewer@$CAPTURE_VIEWER_VERSION" version >/dev/null 2>&1; then
echo "π¦ @pascal-app/capture-viewer@$CAPTURE_VIEWER_VERSION is already published; continuing release recovery"
else
npm publish --access public --tag "$NPM_TAG"
echo "π¦ Published @pascal-app/capture-viewer@$CAPTURE_VIEWER_VERSION"
fi
- name: Publish editor
if: inputs.package == 'editor' || inputs.package == 'all'
working-directory: packages/editor
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
if [ "${{ inputs.dry-run }}" = "true" ]; then
echo "ποΈ Dry run β would publish @pascal-app/editor@$EDITOR_VERSION"
npm publish --dry-run --access public --tag "$NPM_TAG"
elif npm view "@pascal-app/editor@$EDITOR_VERSION" version >/dev/null 2>&1; then
echo "π¦ @pascal-app/editor@$EDITOR_VERSION is already published; continuing release recovery"
else
npm publish --access public --tag "$NPM_TAG"
echo "π¦ Published @pascal-app/editor@$EDITOR_VERSION"
fi
- name: Build & publish nodes
if: inputs.package == 'nodes' || inputs.package == 'all'
working-directory: packages/nodes
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
bun run build
if [ "${{ inputs.dry-run }}" = "true" ]; then
echo "ποΈ Dry run β would publish @pascal-app/nodes@$NODES_VERSION"
npm publish --dry-run --access public --tag "$NPM_TAG"
elif npm view "@pascal-app/nodes@$NODES_VERSION" version >/dev/null 2>&1; then
echo "π¦ @pascal-app/nodes@$NODES_VERSION is already published; continuing release recovery"
else
npm publish --access public --tag "$NPM_TAG"
echo "π¦ Published @pascal-app/nodes@$NODES_VERSION"
fi
- name: Build & publish mcp
if: inputs.package == 'mcp' || inputs.package == 'all'
working-directory: packages/mcp
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
bun run build
if [ "${{ inputs.dry-run }}" = "true" ]; then
echo "ποΈ Dry run β would publish @pascal-app/mcp@$MCP_VERSION"
npm publish --dry-run --access public --tag "$NPM_TAG"
elif npm view "@pascal-app/mcp@$MCP_VERSION" version >/dev/null 2>&1; then
echo "π¦ @pascal-app/mcp@$MCP_VERSION is already published; continuing release recovery"
else
npm publish --access public --tag "$NPM_TAG"
echo "π¦ Published @pascal-app/mcp@$MCP_VERSION"
fi
- name: Build & publish ifc-converter
if: inputs.package == 'ifc-converter' || inputs.package == 'all'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
# ifc-converter depends on @pascal-app/core (workspace) β build it first
bun run build --filter @pascal-app/core 2>/dev/null || (cd packages/core && bun run build)
cd packages/ifc-converter
bun run build
if [ "${{ inputs.dry-run }}" = "true" ]; then
echo "ποΈ Dry run β would publish @pascal-app/ifc-converter@$IFC_CONVERTER_VERSION"
npm publish --dry-run --access public --tag "$NPM_TAG"
elif npm view "@pascal-app/ifc-converter@$IFC_CONVERTER_VERSION" version >/dev/null 2>&1; then
echo "π¦ @pascal-app/ifc-converter@$IFC_CONVERTER_VERSION is already published; continuing release recovery"
else
npm publish --access public --tag "$NPM_TAG"
echo "π¦ Published @pascal-app/ifc-converter@$IFC_CONVERTER_VERSION"
fi
- name: Publish CLI
if: inputs.package == 'cli' || inputs.package == 'all'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
cd packages/cli
if [ "${{ inputs.dry-run }}" = "true" ]; then
echo "ποΈ Dry run β would publish @pascal-app/cli@$CLI_VERSION"
npm publish --ignore-scripts --dry-run --access public --tag "$NPM_TAG"
elif npm view "@pascal-app/cli@$CLI_VERSION" version >/dev/null 2>&1; then
echo "π¦ @pascal-app/cli@$CLI_VERSION is already published; continuing release recovery"
else
npm publish --ignore-scripts --access public --tag "$NPM_TAG"
echo "π¦ Published @pascal-app/cli@$CLI_VERSION"
fi
- name: Commit version bumps & tag
if: inputs.dry-run == false
run: |
git add -A
PKGS=""
TAGS=""
if [ -n "$CAPTURE_PROTOCOL_VERSION" ]; then
PKGS="$PKGS @pascal-app/capture-protocol@$CAPTURE_PROTOCOL_VERSION"
TAGS="$TAGS @pascal-app/capture-protocol@$CAPTURE_PROTOCOL_VERSION"
fi
if [ -n "$CORE_VERSION" ]; then
PKGS="$PKGS @pascal-app/core@$CORE_VERSION"
TAGS="$TAGS @pascal-app/core@$CORE_VERSION"
fi
if [ -n "$VIEWER_VERSION" ]; then
PKGS="$PKGS @pascal-app/viewer@$VIEWER_VERSION"
TAGS="$TAGS @pascal-app/viewer@$VIEWER_VERSION"
fi
if [ -n "$CAPTURE_VIEWER_VERSION" ]; then
PKGS="$PKGS @pascal-app/capture-viewer@$CAPTURE_VIEWER_VERSION"
TAGS="$TAGS @pascal-app/capture-viewer@$CAPTURE_VIEWER_VERSION"
fi
if [ -n "$EDITOR_VERSION" ]; then
PKGS="$PKGS @pascal-app/editor@$EDITOR_VERSION"
TAGS="$TAGS @pascal-app/editor@$EDITOR_VERSION"
fi
if [ -n "$NODES_VERSION" ]; then
PKGS="$PKGS @pascal-app/nodes@$NODES_VERSION"
TAGS="$TAGS @pascal-app/nodes@$NODES_VERSION"
fi
if [ -n "$MCP_VERSION" ]; then
PKGS="$PKGS @pascal-app/mcp@$MCP_VERSION"
TAGS="$TAGS @pascal-app/mcp@$MCP_VERSION"
fi
if [ -n "$IFC_CONVERTER_VERSION" ]; then
PKGS="$PKGS @pascal-app/ifc-converter@$IFC_CONVERTER_VERSION"
TAGS="$TAGS @pascal-app/ifc-converter@$IFC_CONVERTER_VERSION"
fi
if [ -n "$CLI_VERSION" ]; then
PKGS="$PKGS @pascal-app/cli@$CLI_VERSION"
TAGS="$TAGS @pascal-app/cli@$CLI_VERSION"
fi
if git diff --cached --quiet; then
echo "No version-file changes; tagging the current release commit"
else
git commit -m "release:${PKGS}"
fi
for TAG in $TAGS; do
git tag "$TAG"
done
git push --atomic origin HEAD:main $TAGS