@@ -73,13 +73,20 @@ jobs:
73
73
./dist/${{ steps.make_dist.outputs.archive }}
74
74
retention-days : 2
75
75
76
- - name : Upload checksum artefact
76
+ - name : Upload execution client checksum artefact
77
77
uses : actions/upload-artifact@v4
78
78
with :
79
79
name : ${{ matrix.os }}-${{ matrix.cpu }}-checksum
80
80
path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_execution_client.sha512sum
81
81
retention-days : 2
82
82
83
+ - name : Upload proxy checksum artefact
84
+ uses : actions/upload-artifact@v4
85
+ with :
86
+ name : proxy-${{ matrix.os }}-${{ matrix.cpu }}-checksum
87
+ path : ./dist/${{ steps.make_dist.outputs.archive_dir }}/build/nimbus_verified_proxy.sha512sum
88
+ retention-days : 2
89
+
83
90
- name : Login to Docker Hub
84
91
# This step runs only if the tag starts with 'v'
85
92
if : matrix.os == 'linux' && startsWith(github.ref, 'refs/tags/v')
@@ -121,6 +128,8 @@ jobs:
121
128
122
129
## SHA512 checksums
123
130
131
+ ### Nimbus Execution Client
132
+
124
133
\`\`\`text
125
134
EOF
126
135
echo '# Linux AMD64' >> release_notes.md
@@ -129,9 +138,22 @@ jobs:
129
138
cat linux-arm64-checksum/* >> release_notes.md
130
139
echo '# Windows AMD64' >> release_notes.md
131
140
cat windows-amd64-checksum/* >> release_notes.md
132
- echo '# macos ARM64' >> release_notes.md
141
+ echo '# macOS ARM64' >> release_notes.md
133
142
cat macos-arm64-checksum/* >> release_notes.md
134
143
echo '```' >> release_notes.md
144
+ echo '' >> release_notes.md
145
+ echo '### Nimbus Execution Client' >> release_notes.md
146
+ echo '' >> release_notes.md
147
+ echo '```' >> release_notes.md
148
+ echo '# Linux AMD64' >> release_notes.md
149
+ cat proxy-linux-amd64-checksum/* >> release_notes.md
150
+ echo '# Linux ARM64' >> release_notes.md
151
+ cat proxy-linux-arm64-checksum/* >> release_notes.md
152
+ echo '# Windows AMD64' >> release_notes.md
153
+ cat proxy-windows-amd64-checksum/* >> release_notes.md
154
+ echo '# macOS ARM64' >> release_notes.md
155
+ cat proxy-macos-arm64-checksum/* >> release_notes.md
156
+ echo '```' >> release_notes.md
135
157
136
158
- name : Create release
137
159
id : create_release
@@ -162,6 +184,10 @@ jobs:
162
184
windows-amd64-checksum
163
185
macos-arm64-archive
164
186
macos-arm64-checksum
187
+ proxy-linux-amd64-checksum
188
+ proxy-linux-arm64-checksum
189
+ proxy-windows-amd64-checksum
190
+ proxy-macos-arm64-checksum
165
191
166
192
# - name: Login to Docker Hub
167
193
# uses: docker/login-action@v3
0 commit comments