-
Notifications
You must be signed in to change notification settings - Fork 0
235 lines (191 loc) · 7.99 KB
/
pr-automation-types-rollup-solochain.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
name: PR automation types rollup solochain
on:
workflow_dispatch:
inputs:
parachainDocker:
description: "Name of the parachain docker reference"
type: string
required: false
default: "mangatasolutions/rollup-node:a5060642ee6f68c18b258f53593639b8a343e4b6"
branch:
description: "Branch where to run workflow"
type: string
required: false
default: ""
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: write
id-token: write
deployments: write
checks: write
env:
INPUTS_BRANCH: ${{ github.event.inputs.branch || github.ref_name }}
jobs:
release-type-definitions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.inputs.branch }}
- uses: nrwl/nx-set-shas@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
cache: "npm"
- run: npm ci
- run: npx nx run gasp-type-definitions:lint
- name: NPM version bump type definitions
working-directory: packages/type-definitions
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 gasp-type-definitions:build
- name: Publish type definitions to NPM
working-directory: dist/packages/type-definitions
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
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:
fetch-depth: 0
ref: ${{ github.ref }}
- uses: nrwl/nx-set-shas@v4
- name: Clone mangata node repository
uses: actions/checkout@v4
with:
repository: mangata-finance/mangata-node
path: mangata-repo
ref: ${{ env.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: dtolnay/rust-toolchain@v1
with:
toolchain: nightly
targets: wasm32-unknown-unknown
- name: Install websocat
run: cargo install websocat
- name: Run the Node
working-directory: mangata-repo
env:
NODE_IMAGE: ${{ github.event.inputs.parachainDocker || 'mangatasolutions/rollup-node:53c527a67582de8b7099d76d86c44c200e053f2b' }}
run: |
echo "Starting nodes with image: ${NODE_IMAGE}"
docker compose up -d
docker ps
- name: Sleep for 1 minutes
run: sleep 60s
- run: npm ci
- run: npx nx run gasp-types:generate-metadata-solochain
- run: npx nx run gasp-types:build-types
- run: npx nx run gasp-types:lint
- name: NPM version bump
working-directory: packages/types
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: 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 to new prerelease version"
git push origin ${{ env.INPUTS_BRANCH }}
- name: Build types
run: npx nx run gasp-types:build
- name: Publish to NPM
working-directory: dist/packages/types
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
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@v4
- 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 gasp-type-definitions dist-tags."$(echo "${{ env.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 gasp-types dist-tags."$(echo "${{ env.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/\"gasp-types\": \".*\"/\"gasp-types\": \"${{env.BRANCH_TYPES_VERSION}}\"/" package.json
- name: Update type definitions dependency version
working-directory: packages/sdk
run: |
sed -i "s/\"gasp-type-definitions\": \".*\"/\"gasp-type-definitions\": \"${{env.BRANCH_TYPE_DEFINITIONS_VERSION}}\"/" package.json
- run: npm i
- run: npx nx run gasp-sdk:lint
- name: NPM version bump
working-directory: packages/sdk
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 gasp-sdk:build
- name: Publish to NPM
working-directory: dist/packages/sdk
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
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 gasp-type-definitions:"
npm show gasp-type-definitions dist-tags."$(echo "${{ env.INPUTS_BRANCH }}" | sed -E 's@[/\.]@-@g; s@_@-@g')"
echo "Version of gasp-types:"
npm show gasp-types dist-tags."$(echo "${{ env.INPUTS_BRANCH }}" | sed -E 's@[/\.]@-@g; s@_@-@g')"
echo "Version of gasp-sdk:"
npm show gasp-sdk dist-tags."$(echo "${{ env.INPUTS_BRANCH }}" | sed -E 's@[/\.]@-@g; s@_@-@g')"