-
Notifications
You must be signed in to change notification settings - Fork 576
178 lines (154 loc) · 5.87 KB
/
publish-release.yml
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
name: Publish Release
on:
workflow_dispatch:
inputs:
tag:
description: Release version tag
required: true
type: string
default: 'latest'
commit:
description: Optional commit to publish from
required: false
type: string
jobs:
main:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
pull-requests: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
ref: ${{ inputs.commit || github.event.pull_request.head.sha }}
- name: Setup node version
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Get NPM cache directory
id: npm-cache-dir
shell: bash
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
- name: Restore NPM cache
id: npm-cache
uses: actions/cache@v4
with:
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install node modules
run: npm ci
- name: Download JSI binding source-code from PR
uses: dawidd6/action-download-artifact@09f2f74827fd3a8607589e5ad7f9398816f540fe
with:
workflow: pr-realm-js.yml
commit: ${{ inputs.commit || github.sha }}
path: ${{ github.workspace }}
workflow_conclusion: "" # Ignores workflow conclusion
github_token: ${{ secrets.REALM_CI_PAT }}
name: jsi-binding-source
- name: Download TypeScript build from PR
uses: dawidd6/action-download-artifact@09f2f74827fd3a8607589e5ad7f9398816f540fe
with:
workflow: pr-realm-js.yml
commit: ${{ inputs.commit || github.sha }}
path: ${{ github.workspace }}
workflow_conclusion: "" # Ignores workflow conclusion
github_token: ${{ secrets.REALM_CI_PAT }}
name: ts-build
- name: Download prebuilds from PR
uses: dawidd6/action-download-artifact@09f2f74827fd3a8607589e5ad7f9398816f540fe
with:
workflow: pr-realm-js.yml
commit: ${{ inputs.commit || github.sha }}
path: ${{ github.workspace }}
workflow_conclusion: "" # Ignores workflow conclusion
github_token: ${{ secrets.REALM_CI_PAT }}
name_is_regexp: true
name: *-prebuild
- name: Read version
id: get-version
run: |
pkgVersion=$(jq -r .version packages/realm/package.json)
echo "version=$pkgVersion" >> $GITHUB_OUTPUT
prerelease=false
if [ '${{ inputs.tag }}' != latest ]; then prerelease=true; fi
echo "prerelease=$prerelease" >> $GITHUB_OUTPUT
shell: bash
- name: Set up S3cmd and configure AWS credentials
uses: s3-actions/[email protected]
with:
provider: aws
region: "us-east-1"
access_key: ${{ secrets.AWS_S3_ACCESS_KEY_ID }}
secret_key: ${{ secrets.AWS_S3_SECRET_ACCESS_KEY }}
- name: Upload prebuilds to S3
run: s3cmd put --recursive --acl-public packages/realm/prebuilds/realm-* s3://${{ secrets.PREBUILDS_S3_BUCKET_NAME }}/${{ steps.get-version.outputs.version }}/
- name: Publish realm v${{ steps.get-version.outputs.version }} on NPM
run: npm publish --provenance --workspace realm --tag '${{ inputs.tag}}'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Find Release PR
uses: juliangruber/[email protected]
id: find-pull-request
with:
branch: ${{ github.ref }}
- name: Merge Pull Request
uses: juliangruber/merge-pull-request-action@8a13f2645ad8b6ada32f829b2fae9c0955a5265d
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
number: ${{ steps.find-pull-request.outputs.number }}
method: squash
- name: Checkout base branch (after merge)
uses: actions/checkout@v4
with:
submodules: recursive
ref: ${{ steps.find-pull-request.outputs.base-ref }}
- name: Install node modules (again)
run: npm ci
- name: Extract Changelog
run: node scripts/extract-changelog.js ${{ steps.get-version.outputs.version }} > EXTRACTED_CHANGELOG.md
- name: Create Github Release
uses: ncipollo/release-action@10c84d509b28aae3903113151bfd832314964f2e
with:
bodyFile: EXTRACTED_CHANGELOG.md
name: Realm JavaScript v${{ steps.get-version.outputs.version }}
tag: v${{ steps.get-version.outputs.version }}
token: ${{ secrets.GITHUB_TOKEN }}
draft: false
prerelease: ${{ steps.get-version.outputs.prerelease }}
- name: 'Post to #realm-releases'
uses: realm/ci-actions/release-to-slack@9166f8af1cc0739f03702c66294ed2fe4cc55f4c
with:
changelog: EXTRACTED_CHANGELOG.md
sdk: JavaScript
webhook-url: ${{ secrets.SLACK_RELEASE_WEBHOOK }}
version: ${{ steps.get-version.outputs.version }}
# This job might fail due to failed markdown-to-slack conversion.
continue-on-error: true
- name: Update Changelog
run: npm run prepend-changelog-header
- name: Create vNext PR
id: vnext-pr
uses: peter-evans/create-pull-request@7380612b49221684fefa025244f2ef4008ae50ad
with:
branch: prepare-vnext
title: Prepare for vNext
body: Update Changelog for vNext
delete-branch: true
commit-message: Prepare for vNext
base: ${{ steps.find-pull-request.outputs.base-ref }}
labels: no-jira-ticket
- name: Merge Pull Request
uses: juliangruber/merge-pull-request-action@8a13f2645ad8b6ada32f829b2fae9c0955a5265d
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
number: ${{ steps.vnext-pr.outputs.pull-request-number }}
method: squash