-
Notifications
You must be signed in to change notification settings - Fork 3
263 lines (210 loc) · 9.13 KB
/
pr-automation-types.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
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
name: PR Automation types
on:
workflow_dispatch:
inputs:
parachainDocker:
description: "Parachain docker reference"
type: string
required: true
default: "mangatasolutions/mangata-node:develop"
branch:
description: "Branch for pre-release"
type: string
required: true
default: ""
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: write
id-token: write
deployments: write
checks: write
jobs:
release-type-definitions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}
- uses: nrwl/nx-set-shas@v3
- name: Setup Node version and cache dependencies
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "npm"
- run: npm ci
- run: npx nx run @mangata-finance/type-definitions:lint
- name: NPM version bump type definitions
working-directory: packages/type-definitions
env:
INPUTS_BRANCH: ${{ github.event.inputs.branch }}
run: |
# Branch name sanitization added to avoid issues with npm version command
# Example `ci/new-branch-1.0.0` -> `ci-new-branch-1-0-0`
npm version prerelease --preid="$(echo "${INPUTS_BRANCH}" | sed -E 's@[/\.]@-@g; s@_@-@g')"
- name: git add and commit new version
run: |
git config user.name mangatafinance
git config user.email [email protected]
git add .
git commit -m "chore: updated type definitions to new prerelease version"
git push
- name: Build type definitions
run: npx nx run @mangata-finance/type-definitions:build
- name: Publish type definitions to NPM
working-directory: dist/packages/type-definitions
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
INPUTS_BRANCH: ${{ github.event.inputs.branch }}
run: |
echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc
# Branch name sanitization added to avoid issues with npm version command
# Example `ci/new-branch-1.0.0` -> `ci-new-branch-1-0-0`
npm publish --tag "$(echo "${INPUTS_BRANCH}" | sed -E 's@[/\.]@-@g; s@_@-@g')" --access public
release-types:
runs-on: ubuntu-latest
needs: [release-type-definitions]
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- uses: nrwl/nx-set-shas@v3
- name: Clone mangata node repository
uses: actions/checkout@v4
with:
repository: mangata-finance/mangata-node
path: mangata-repo
ref: ${{ github.event.inputs.branch }}
- name: Setup Node version and cache dependencies
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "npm"
- name: Install WASM toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
target: wasm32-unknown-unknown
- name: Install websocat
run: |
cargo install websocat
shell: bash
- name: Replace parachain docker image reference in config
working-directory: mangata-repo/devops/parachain-launch
run: sed -i 's+mangatasolutions/mangata-node:.*+${{ github.event.inputs.parachainDocker }}+g' config.yml
- name: Generate the config
working-directory: mangata-repo/devops/parachain-launch
run: npx @open-web3/parachain-launch generate config.yml
- name: Remove obsolete node run args from generated docker-compose.yml
working-directory: mangata-repo/devops/parachain-launch/output
run: sed -i '/ws-external/d' docker-compose.yml
- name: Run the Node
working-directory: mangata-repo/devops/parachain-launch/output
run: |
docker-compose up -d --build
docker ps
- name: Sleep for 1 minutes
run: sleep 60s
- run: npm ci
- name: Generate metadata
run: npx nx run @mangata-finance/types:generate-metadata
- name: Build types
run: npx nx run @mangata-finance/types:build-types
- name: Lint types
run: npx nx run @mangata-finance/types:lint
- name: NPM version bump
working-directory: packages/types
env:
INPUTS_BRANCH: ${{ github.event.inputs.branch }}
run: |
# Branch name sanitization added to avoid issues with npm version command
# Example `ci/new-branch-1.0.0` -> `ci-new-branch-1-0-0`
npm version prerelease --preid="$(echo "${INPUTS_BRANCH}" | sed -E 's@[/\.]@-@g; s@_@-@g')"
- name: Remove Cloned Repository
run: rm -rf mangata-repo
- name: Sleep for 1 minutes
run: sleep 60s
- name: git add and commit new version
run: |
git config user.name mangatafinance
git config user.email [email protected]
git add .
git commit -m "chore: updated types to new prerelease version"
git push origin ${{ github.event.inputs.branch }}
- name: Build types
run: npx nx run @mangata-finance/types:build
- name: Publish to NPM
working-directory: dist/packages/types
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
INPUTS_BRANCH: ${{ github.event.inputs.branch }}
run: |
echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc
# Branch name sanitization added to avoid issues with npm version command
# Example `ci/new-branch-1.0.0` -> `ci-new-branch-1-0-0`
npm publish --tag "$(echo "${INPUTS_BRANCH}" | sed -E 's@[/\.]@-@g; s@_@-@g')" --access public
release-sdk:
runs-on: ubuntu-latest
needs: [release-type-definitions, release-types]
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- uses: nrwl/nx-set-shas@v3
- name: Setup Node version and cache dependencies
uses: actions/setup-node@v4
with:
node-version: "18"
cache: "npm"
- name: Type definitions version for branch
run: |
branchTypeDefinitionsVersion=$(npm show @mangata-finance/type-definitions dist-tags."$(echo "${{ github.event.inputs.branch }}" | sed -E 's@[/\.]@-@g; s@_@-@g')")
echo "BRANCH_TYPE_DEFINITIONS_VERSION=$branchTypeDefinitionsVersion" >> $GITHUB_ENV
- name: Types version for branch
run: |
branchTypesVersion=$(npm show @mangata-finance/types dist-tags."$(echo "${{ github.event.inputs.branch }}" | sed -E 's@[/\.]@-@g; s@_@-@g')")
echo "BRANCH_TYPES_VERSION=$branchTypesVersion" >> $GITHUB_ENV
- name: Update types dependency version
working-directory: packages/sdk
run: |
sed -i "s/\"@mangata-finance\/types\": \".*\"/\"@mangata-finance\/types\": \"${{env.BRANCH_TYPES_VERSION}}\"/" package.json
- name: Update type definitions dependency version
working-directory: packages/sdk
run: |
sed -i "s/\"@mangata-finance\/type-definitions\": \".*\"/\"@mangata-finance\/type-definitions\": \"${{env.BRANCH_TYPE_DEFINITIONS_VERSION}}\"/" package.json
- run: npm i
- run: npx nx run @mangata-finance/sdk:lint
- name: NPM version bump
working-directory: packages/sdk
env:
INPUTS_BRANCH: ${{ github.event.inputs.branch }}
run: |
# Branch name sanitization added to avoid issues with npm version command
# Example `ci/new-branch-1.0.0` -> `ci-new-branch-1-0-0`
npm version prerelease --preid="$(echo "${INPUTS_BRANCH}" | sed -E 's@[/\.]@-@g; s@_@-@g')"
- name: git add and commit new version
run: |
git config user.name mangatafinance
git config user.email [email protected]
git add .
git commit -m "chore: updated sdk to new prerelease version"
git push
- name: Build sdk
run: npx nx run @mangata-finance/sdk:build
- name: Publish to NPM
working-directory: dist/packages/sdk
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
INPUTS_BRANCH: ${{ github.event.inputs.branch }}
run: |
echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc
# Branch name sanitization added to avoid issues with npm version command
# Example `ci/new-branch-1.0.0` -> `ci-new-branch-1-0-0`
npm publish --tag "$(echo "${INPUTS_BRANCH}" | sed -E 's@[/\.]@-@g; s@_@-@g')" --access public
- name: Show released versions
run: |
echo "Version of @mangata-finance/type-definitions:"
npm show @mangata-finance/type-definitions dist-tags."$(echo "${{ github.event.inputs.branch }}" | sed -E 's@[/\.]@-@g; s@_@-@g')"
echo "Version of @mangata-finance/types:"
npm show @mangata-finance/types dist-tags."$(echo "${{ github.event.inputs.branch }}" | sed -E 's@[/\.]@-@g; s@_@-@g')"
echo "Version of @mangata-finance/sdk:"
npm show @mangata-finance/sdk dist-tags."$(echo "${{ github.event.inputs.branch }}" | sed -E 's@[/\.]@-@g; s@_@-@g')"