-
Notifications
You must be signed in to change notification settings - Fork 4
217 lines (178 loc) · 5.78 KB
/
Copy pathpublish.yml
File metadata and controls
217 lines (178 loc) · 5.78 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
name: Publish Packages
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
id-token: write
concurrency:
group: publish-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
name: Lint, typecheck and test
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10.31.0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
registry-url: "https://registry.npmjs.org"
cache: "pnpm"
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build packages
run: pnpm build
- name: Lint
run: pnpm run lint:check
- name: Typecheck
run: pnpm run typecheck
- name: Test
run: pnpm test
- name: Integration test
run: pnpm run test:integration
live-smoke:
name: Live production smoke test
runs-on: ubuntu-latest
needs: verify
env:
RYZOME_ENABLE_LIVE_SMOKE: "1"
RYZOME_LIVE_SMOKE_API_KEY: ${{ secrets.RYZOME_LIVE_SMOKE_API_KEY }}
RYZOME_LIVE_SMOKE_API_URL: ${{ vars.RYZOME_LIVE_SMOKE_API_URL }}
RYZOME_LIVE_SMOKE_APP_URL: ${{ vars.RYZOME_LIVE_SMOKE_APP_URL }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10.31.0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
cache: "pnpm"
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build packages
run: pnpm build
- name: Validate live smoke configuration
run: |
test -n "$RYZOME_LIVE_SMOKE_API_KEY" || {
echo "RYZOME_LIVE_SMOKE_API_KEY is required for publish workflow live smoke checks."
exit 1
}
- name: Run live smoke integration test
run: pnpm run test:integration
release:
name: Release
runs-on: ubuntu-latest
needs:
- verify
- live-smoke
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10.31.0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
registry-url: "https://registry.npmjs.org"
cache: "pnpm"
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build packages
run: pnpm build
- name: Create Release PR or Publish
id: changesets
uses: changesets/action@v1
with:
version: pnpm version-packages
publish: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_CONFIG_PROVENANCE: "true"
- name: Create GitHub Release
if: steps.changesets.outputs.published == 'true'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# Build release body from published packages
BODY="## Published packages\n\n"
for pkg in $(echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -r '.[] | "\(.name)@\(.version)"'); do
BODY="${BODY}- \`${pkg}\`\n"
done
# Use the highest non-snapshot version as the tag
VERSION=$(echo '${{ steps.changesets.outputs.publishedPackages }}' | jq -r '.[0].version')
TAG="v${VERSION}"
gh release create "$TAG" \
--title "$TAG" \
--notes "$(echo -e "$BODY")" \
--latest
dev-snapshot:
name: Publish dev snapshots
runs-on: ubuntu-latest
needs:
- verify
- live-smoke
# Only publish dev snapshots when changesets/action would create a version PR
# (i.e. there are pending changesets). When it publishes stable, skip snapshots.
if: ${{ !contains(github.event.head_commit.message, 'Version Packages') }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10.31.0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
registry-url: "https://registry.npmjs.org"
cache: "pnpm"
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build packages
run: pnpm build
- name: Check for pending changesets
id: check
run: |
if ls .changeset/*.md 1>/dev/null 2>&1 && [ "$(ls .changeset/*.md 2>/dev/null | grep -v README.md | wc -l)" -gt 0 ]; then
echo "has_changesets=true" >> "$GITHUB_OUTPUT"
else
echo "has_changesets=false" >> "$GITHUB_OUTPUT"
fi
- name: Publish dev snapshot
if: steps.check.outputs.has_changesets == 'true'
# Mirrors `pnpm version-packages` so dev tarballs do not ship with stale
# openclaw.plugin.json or Hermes plugin metadata relative to package.json.
run: |
pnpm changeset version --snapshot dev
node scripts/sync-plugin-version.mjs
node scripts/sync-hermes-plugin-version.mjs
pnpm --filter @ryzome-ai/hermes-ryzome build
pnpm changeset publish --tag dev
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_CONFIG_PROVENANCE: "true"