-
Notifications
You must be signed in to change notification settings - Fork 0
231 lines (190 loc) · 6.34 KB
/
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
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
name: 'release'
on:
push:
branches:
- 'main'
concurrency:
group: '${{ github.workflow }}-${{ github.ref }}'
jobs:
release-please:
runs-on: ubuntu-latest
outputs:
release-created: ${{ steps.release.outputs['release_created'] }}
tag-name: ${{ steps.release.outputs['tag_name'] }}
version: ${{ steps.release.outputs['version'] }}
pr: ${{ steps.release.outputs['pr'] }}
steps:
- name: Run release-please
id: release
uses: google-github-actions/release-please-action@v3
with:
token: ${{ secrets.FLUENCEBOT_RELEASE_PLEASE_PAT }}
command: manifest
config-file: .github/release-please/config.json
manifest-file: .github/release-please/manifest.json
- name: Show output from release-please
if: steps.release.outputs.releases_created
env:
RELEASE_PLEASE_OUTPUT: ${{ toJSON(steps.release.outputs) }}
run: echo "${RELEASE_PLEASE_OUTPUT}" | jq
bump-version:
if: needs.release-please.outputs.pr != null
runs-on: builder
needs:
- release-please
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ fromJson(needs.release-please.outputs.pr).headBranchName }}
token: ${{ secrets.FLUENCEBOT_RELEASE_PLEASE_PAT }}
- name: Setup Rust toolchain
uses: dsherret/rust-toolchain-file@v1
- name: Install cargo-workspaces
uses: baptiste0928/[email protected]
with:
crate: cargo-workspaces
- name: Get version
id: version
run: |
version="$(jq -r '.[]' .github/release-please/manifest.json)"
echo "version=${version}" >> $GITHUB_OUTPUT
- name: Set versions
run: |
cargo ws version \
--no-git-commit \
--yes \
--force '*' \
custom ${{ steps.version.outputs.version }}
working-directory: src/spell/modules/spell
- name: Setup marine
uses: fluencelabs/setup-marine@v1
- name: Build and package spell
working-directory: ./src/spell/modules/spell/spell
run: ./build.sh
- uses: pnpm/[email protected]
with:
version: 8
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
- name: Run pnpm i
run: pnpm -r i
- name: Set aqua/spell version
run: pnpx npm version ${{ steps.version.outputs.version }}
working-directory: src/aqua/spell
- name: Set aqua/installation-spell version
run: pnpx npm version ${{ steps.version.outputs.version }}
working-directory: src/aqua/installation-spell
- name: Commit version bump
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: 'chore: Bump spell version to ${{ steps.version.outputs.version }}'
branch: ${{ fromJson(needs.release-please.outputs.pr).headBranchName }}
commit_user_name: fluencebot
commit_user_email: [email protected]
commit_author: fluencebot <[email protected]>
spell:
if: needs.release-please.outputs.release-created
runs-on: builder
needs: release-please
permissions:
contents: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.FLUENCEBOT_RELEASE_PLEASE_PAT }}
- name: Import secrets
uses: hashicorp/[email protected]
with:
url: https://vault.fluence.dev
path: jwt/github
role: ci
method: jwt
jwtGithubAudience: 'https://github.com/fluencelabs'
jwtTtl: 300
exportToken: false
secrets: |
kv/crates.io/fluencebot token | CARGO_REGISTRY_TOKEN ;
kv/npmjs/fluencebot token | NODE_AUTH_TOKEN
- name: Setup Rust toolchain
uses: dsherret/rust-toolchain-file@v1
- name: Install Marine
uses: baptiste0928/[email protected]
with:
crate: marine
- name: Build spell
working-directory: ./src/spell/modules/spell/spell
run: ./build.sh
- name: Install cargo-workspaces
uses: baptiste0928/[email protected]
with:
crate: cargo-workspaces
- name: Publish to crates.io
working-directory: ./src/spell/modules/spell
run: |
cargo ws publish \
--no-git-commit \
--allow-dirty \
--from-git \
--skip-published \
--yes
- uses: pnpm/[email protected]
with:
version: 8
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
- run: pnpm -r i
- name: Publish aqua/spell to NPM registry
run: pnpm --no-git-checks -r publish --access public --tag unstable
slack:
if: always()
name: 'Notify'
runs-on: ubuntu-latest
needs:
- release-please
- spell
permissions:
contents: read
id-token: write
steps:
- uses: lwhiteley/dependent-jobs-result-check@v1
id: status
with:
statuses: failure
dependencies: ${{ toJSON(needs) }}
- name: Log output
run: |
echo "statuses:" "${{ steps.status.outputs.statuses }}"
echo "jobs:" "${{ steps.status.outputs.jobs }}"
echo "found any?:" "${{ steps.status.outputs.found }}"
- name: Import secrets
uses: hashicorp/[email protected]
with:
url: https://vault.fluence.dev
path: jwt/github
role: ci
method: jwt
jwtGithubAudience: 'https://github.com/fluencelabs'
jwtTtl: 300
exportToken: false
secrets: |
kv/slack/release-please webhook | SLACK_WEBHOOK_URL
- uses: ravsamhq/notify-slack-action@v2
if: steps.status.outputs.found == 'true'
with:
status: 'failure'
notification_title: '*{workflow}* has {status_message}'
message_format: '${{ steps.status.outputs.jobs }} {status_message} in <{repo_url}|{repo}>'
footer: '<{run_url}>'