File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -180,6 +180,11 @@ jobs:
180
180
merge-multiple : true
181
181
path : out
182
182
183
+ - name : Figure Out Commit Short ID
184
+ id : commitid
185
+ run : |
186
+ echo ::set-output name=short::$(git rev-parse --short HEAD)
187
+
183
188
- name : Delete Tag
184
189
run : |
185
190
git tag -d latest || echo "no local tag to delete"
@@ -195,7 +200,7 @@ jobs:
195
200
The uploaded files will be updated on the next merge to main, as such download them before use to avoid surprises.
196
201
197
202
---
198
- Commit: ${{needs.validation .outputs.commitid }}
203
+ Commit: ${{steps.commitid .outputs.short }}
199
204
---
200
205
201
206
$generated_release_notes
@@ -214,15 +219,15 @@ jobs:
214
219
uses : jmgilman/actions-generate-checksum@v1
215
220
with :
216
221
method : sha512
217
- patterns : hook_ *.tar.gz
222
+ patterns : hook- *.tar.gz
218
223
219
224
- name : Update latest release
220
225
uses : softprops/action-gh-release@v2
221
226
with :
222
227
name : Hook Latest Development Build
223
228
body : ${{env.RELEASE_NOTES}}
224
229
files : |
225
- hook_ *.tar.gz
230
+ hook- *.tar.gz
226
231
checksum.txt
227
232
prerelease : true
228
233
tag_name : latest
You can’t perform that action at this time.
0 commit comments