forked from microsoft/react-native-code-push
-
Notifications
You must be signed in to change notification settings - Fork 25
470 lines (419 loc) · 16.4 KB
/
Copy pathrelease.yml
File metadata and controls
470 lines (419 loc) · 16.4 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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
name: Release
on:
workflow_dispatch:
inputs:
version_type:
description: 증가시킬 버전
type: choice
options:
- patch
- minor
- major
default: patch
required: true
beta:
description: beta 버전으로 배포
type: boolean
default: false
required: true
push:
branches:
- master
paths:
- package.json
- package-lock.json
concurrency:
group: npm-release
cancel-in-progress: false
permissions:
contents: read
env:
PACKAGE_NAME: '@bravemobile/react-native-code-push'
jobs:
prepare-release-pr:
if: github.event_name == 'workflow_dispatch'
runs-on: ubuntu-24.04
permissions:
contents: write
pull-requests: write
steps:
- name: Verify release source
run: |
if [[ "$GITHUB_REPOSITORY" != 'Soomgo-Mobile/react-native-code-push' ]]; then
echo "::error::Releases can only run in the upstream repository."
exit 1
fi
if [[ "$GITHUB_REF" != 'refs/heads/master' ]]; then
echo "::error::Run the release workflow from the master branch."
exit 1
fi
- name: Checkout repository
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6
with:
node-version: 24
package-manager-cache: false
- name: Calculate release version
id: version
env:
IS_BETA: ${{ inputs.beta }}
VERSION_TYPE: ${{ inputs.version_type }}
run: |
PACKAGE_NAME_FROM_FILE="$(node -p "require('./package.json').name")"
if [[ "$PACKAGE_NAME_FROM_FILE" != "$PACKAGE_NAME" ]]; then
echo "::error::Unexpected package name: $PACKAGE_NAME_FROM_FILE"
exit 1
fi
LATEST_VERSION="$(npm view "$PACKAGE_NAME" dist-tags.latest)"
CURRENT_BETA_VERSION="$(npm view "$PACKAGE_NAME" dist-tags.beta 2> /dev/null || true)"
npm view "$PACKAGE_NAME" versions --json > "$RUNNER_TEMP/published-versions.json"
npm version "$LATEST_VERSION" \
--allow-same-version \
--ignore-scripts \
--no-git-tag-version
if [[ "$IS_BETA" == 'true' ]]; then
npm version "pre${VERSION_TYPE}" \
--ignore-scripts \
--no-git-tag-version \
--preid beta
VERSION="$(node -p "require('./package.json').version")"
while node -e '
const fs = require("fs");
const versions = JSON.parse(fs.readFileSync(process.argv[1], "utf8"));
process.exit(versions.includes(process.argv[2]) ? 0 : 1);
' "$RUNNER_TEMP/published-versions.json" "$VERSION"; do
npm version prerelease \
--ignore-scripts \
--no-git-tag-version \
--preid beta
VERSION="$(node -p "require('./package.json').version")"
done
else
npm version "$VERSION_TYPE" \
--ignore-scripts \
--no-git-tag-version
VERSION="$(node -p "require('./package.json').version")"
fi
if node -e '
const fs = require("fs");
const versions = JSON.parse(fs.readFileSync(process.argv[1], "utf8"));
process.exit(versions.includes(process.argv[2]) ? 0 : 1);
' "$RUNNER_TEMP/published-versions.json" "$VERSION"; then
echo "::error::$PACKAGE_NAME@$VERSION is already published."
exit 1
fi
if [[ "$IS_BETA" == 'true' && -n "$CURRENT_BETA_VERSION" ]]; then
if ! node -e '
const parseBeta = version => {
const match = /^(\d+)\.(\d+)\.(\d+)-beta\.(\d+)$/.exec(version);
if (!match) {
throw new Error("Unsupported beta version: " + version);
}
return match.slice(1).map(Number);
};
const [candidate, current] = process.argv.slice(1).map(parseBeta);
for (let index = 0; index < candidate.length; index += 1) {
if (candidate[index] > current[index]) process.exit(0);
if (candidate[index] < current[index]) process.exit(1);
}
process.exit(1);
' "$VERSION" "$CURRENT_BETA_VERSION"; then
echo "::error::$VERSION must be newer than the current beta dist-tag $CURRENT_BETA_VERSION."
exit 1
fi
fi
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
echo "release_branch=release/v$VERSION" >> "$GITHUB_OUTPUT"
- name: Verify version changes
run: |
if git diff --quiet -- package.json; then
echo '::error::package.json was not updated.'
exit 1
fi
if git diff --quiet -- package-lock.json; then
echo '::error::package-lock.json was not updated.'
exit 1
fi
CHANGED_FILE_COUNT="$(git diff --name-only | wc -l | tr -d ' ')"
if [[ "$CHANGED_FILE_COUNT" != '2' ]]; then
echo '::error::Only package.json and package-lock.json may change.'
git diff --name-only
exit 1
fi
- name: Create release pull request
env:
GH_TOKEN: ${{ github.token }}
RELEASE_BRANCH: ${{ steps.version.outputs.release_branch }}
VERSION: ${{ steps.version.outputs.version }}
run: |
printf '%s\n' \
"## 배포 버전" \
"" \
"- \`$PACKAGE_NAME@$VERSION\`" \
"" \
"이 PR을 병합하면 npm Trusted Publishing 배포가 시작됩니다." \
> "$RUNNER_TEMP/release-pr.md"
if git ls-remote --exit-code --heads origin "refs/heads/$RELEASE_BRANCH" > /dev/null 2>&1; then
git fetch origin "$RELEASE_BRANCH"
REMOTE_VERSION="$(git show FETCH_HEAD:package.json | node -p '
JSON.parse(require("fs").readFileSync(0, "utf8")).version
')"
if [[ "$REMOTE_VERSION" != "$VERSION" ]]; then
echo "::error::$RELEASE_BRANCH contains version $REMOTE_VERSION instead of $VERSION."
exit 1
fi
PR_URL="$(gh pr list \
--base master \
--head "$RELEASE_BRANCH" \
--state open \
--json url \
--jq '.[0].url // empty')"
if [[ -z "$PR_URL" ]]; then
PR_URL="$(gh pr create \
--base master \
--head "$RELEASE_BRANCH" \
--title "Release v${VERSION}" \
--body-file "$RUNNER_TEMP/release-pr.md")"
fi
echo "::notice title=Release pull request::$PR_URL"
exit 0
fi
git config user.name 'github-actions[bot]'
git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
git switch -c "$RELEASE_BRANCH"
git add package.json package-lock.json
git commit -m "chore: v${VERSION} 배포 준비"
git push origin "$RELEASE_BRANCH"
PR_URL="$(gh pr create \
--base master \
--head "$RELEASE_BRANCH" \
--title "Release v${VERSION}" \
--body-file "$RUNNER_TEMP/release-pr.md")"
echo "::notice title=Release pull request::$PR_URL"
plan-release:
if: github.event_name == 'push'
runs-on: ubuntu-24.04
permissions:
contents: read
outputs:
current_beta_version: ${{ steps.plan.outputs.current_beta_version }}
dist_tag: ${{ steps.plan.outputs.dist_tag }}
is_prerelease: ${{ steps.plan.outputs.is_prerelease }}
latest_version: ${{ steps.plan.outputs.latest_version }}
should_publish: ${{ steps.plan.outputs.should_publish }}
tag: ${{ steps.plan.outputs.tag }}
version: ${{ steps.plan.outputs.version }}
steps:
- name: Checkout repository
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
- name: Set up Node.js
uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6
with:
node-version: 24
package-manager-cache: false
- name: Plan release
id: plan
run: |
PACKAGE_NAME_FROM_FILE="$(node -p "require('./package.json').name")"
if [[ "$PACKAGE_NAME_FROM_FILE" != "$PACKAGE_NAME" ]]; then
echo "::error::Unexpected package name: $PACKAGE_NAME_FROM_FILE"
exit 1
fi
VERSION="$(node -p "require('./package.json').version")"
TAG="v$VERSION"
LATEST_VERSION="$(npm view "$PACKAGE_NAME" dist-tags.latest)"
CURRENT_BETA_VERSION="$(npm view "$PACKAGE_NAME" dist-tags.beta 2> /dev/null || true)"
npm view "$PACKAGE_NAME" versions --json > "$RUNNER_TEMP/published-versions.json"
SHOULD_PUBLISH=true
if node -e '
const fs = require("fs");
const versions = JSON.parse(fs.readFileSync(process.argv[1], "utf8"));
process.exit(versions.includes(process.argv[2]) ? 0 : 1);
' "$RUNNER_TEMP/published-versions.json" "$VERSION"; then
SHOULD_PUBLISH=false
fi
case "$VERSION" in
*-beta.*)
DIST_TAG=beta
IS_PRERELEASE=true
;;
*-*)
echo "::error::Only beta prereleases are supported: $VERSION"
exit 1
;;
*)
DIST_TAG=latest
IS_PRERELEASE=false
;;
esac
echo "current_beta_version=$CURRENT_BETA_VERSION" >> "$GITHUB_OUTPUT"
echo "dist_tag=$DIST_TAG" >> "$GITHUB_OUTPUT"
echo "is_prerelease=$IS_PRERELEASE" >> "$GITHUB_OUTPUT"
echo "latest_version=$LATEST_VERSION" >> "$GITHUB_OUTPUT"
echo "should_publish=$SHOULD_PUBLISH" >> "$GITHUB_OUTPUT"
echo "tag=$TAG" >> "$GITHUB_OUTPUT"
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
build-release:
needs: plan-release
if: needs.plan-release.outputs.should_publish == 'true'
runs-on: ubuntu-24.04
permissions:
contents: read
outputs:
tarball: ${{ steps.pack.outputs.tarball }}
steps:
- name: Checkout repository
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6
with:
node-version: 24
package-manager-cache: false
- name: Install dependencies without lifecycle scripts
run: npm ci --ignore-scripts
- name: Verify release version
env:
CURRENT_BETA_VERSION: ${{ needs.plan-release.outputs.current_beta_version }}
DIST_TAG: ${{ needs.plan-release.outputs.dist_tag }}
LATEST_VERSION: ${{ needs.plan-release.outputs.latest_version }}
VERSION: ${{ needs.plan-release.outputs.version }}
run: |
node -e '
const semver = require("semver");
const [version, latestVersion, currentBetaVersion, distTag] = process.argv.slice(1);
if (!semver.valid(version) || !semver.gt(version, latestVersion)) {
throw new Error(version + " must be newer than " + latestVersion);
}
if ((distTag === "beta") !== Boolean(semver.prerelease(version))) {
throw new Error(version + " does not match the " + distTag + " dist-tag");
}
if (distTag === "beta" && currentBetaVersion && !semver.gt(version, currentBetaVersion)) {
throw new Error(version + " must be newer than the current beta dist-tag " + currentBetaVersion);
}
' "$VERSION" "$LATEST_VERSION" "$CURRENT_BETA_VERSION" "$DIST_TAG"
- name: Run type checks
run: npm run typecheck
- name: Run Jest
run: npm run jest -- --watchman=false
- name: Build and pack
id: pack
run: |
npm run build:cli
mkdir -p release
TARBALL="$(npm pack --ignore-scripts --pack-destination release)"
sha512sum "release/$TARBALL" > "release/$TARBALL.sha512"
echo "tarball=$TARBALL" >> "$GITHUB_OUTPUT"
- name: Upload release artifact
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
with:
name: npm-package-${{ needs.plan-release.outputs.version }}
path: release/*
if-no-files-found: error
retention-days: 7
create-github-release:
needs:
- plan-release
- build-release
if: needs.plan-release.outputs.should_publish == 'true'
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
with:
fetch-depth: 0
- name: Create release tag
env:
TAG: ${{ needs.plan-release.outputs.tag }}
run: |
git fetch origin --tags --force
if git show-ref --verify --quiet "refs/tags/$TAG"; then
TAG_SHA="$(git rev-list -n 1 "$TAG")"
if [[ "$TAG_SHA" != "$GITHUB_SHA" ]]; then
echo "::error::$TAG points to $TAG_SHA instead of $GITHUB_SHA."
exit 1
fi
else
git config user.name 'github-actions[bot]'
git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
git tag --annotate "$TAG" --message "$TAG"
git push origin "$TAG"
fi
- name: Create draft GitHub Release
env:
GH_TOKEN: ${{ github.token }}
IS_PRERELEASE: ${{ needs.plan-release.outputs.is_prerelease }}
TAG: ${{ needs.plan-release.outputs.tag }}
run: |
if gh release view "$TAG" > /dev/null 2>&1; then
IS_DRAFT="$(gh release view "$TAG" --json isDraft --jq '.isDraft')"
if [[ "$IS_DRAFT" != 'true' ]]; then
echo "::error::$TAG already has a published GitHub Release."
exit 1
fi
exit 0
fi
RELEASE_ARGS=(
"$TAG"
--draft
--generate-notes
--title "$TAG"
--verify-tag
)
if [[ "$IS_PRERELEASE" == 'true' ]]; then
RELEASE_ARGS+=(--prerelease)
fi
gh release create "${RELEASE_ARGS[@]}"
publish-npm:
needs:
- plan-release
- build-release
- create-github-release
if: needs.plan-release.outputs.should_publish == 'true'
runs-on: ubuntu-24.04
environment:
name: npm-release
url: https://www.npmjs.com/package/@bravemobile/react-native-code-push/v/${{ needs.plan-release.outputs.version }}
permissions:
contents: read
id-token: write
steps:
- name: Download release artifact
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7
with:
name: npm-package-${{ needs.plan-release.outputs.version }}
path: release
- name: Set up Node.js
uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6
with:
node-version: 24
package-manager-cache: false
registry-url: https://registry.npmjs.org
- name: Verify npm Trusted Publishing support
run: |
node -e '
const npmVersion = require("child_process")
.execFileSync("npm", ["--version"], {encoding: "utf8"})
.trim()
.split(".")
.map(Number);
const [major, minor, patch] = npmVersion;
if (major < 11 || (major === 11 && minor < 5) || (major === 11 && minor === 5 && patch < 1)) {
throw new Error("npm 11.5.1 or newer is required for Trusted Publishing");
}
'
- name: Verify release artifact
env:
TARBALL: ${{ needs.build-release.outputs.tarball }}
run: sha512sum --check "release/$TARBALL.sha512"
- name: Publish package to npm
env:
DIST_TAG: ${{ needs.plan-release.outputs.dist_tag }}
TARBALL: ${{ needs.build-release.outputs.tarball }}
run: npm publish "./release/$TARBALL" --ignore-scripts --tag "$DIST_TAG"