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:
180180 merge-multiple : true
181181 path : out
182182
183+ - name : Figure Out Commit Short ID
184+ id : commitid
185+ run : |
186+ echo ::set-output name=short::$(git rev-parse --short HEAD)
187+
183188 - name : Delete Tag
184189 run : |
185190 git tag -d latest || echo "no local tag to delete"
@@ -195,7 +200,7 @@ jobs:
195200 The uploaded files will be updated on the next merge to main, as such download them before use to avoid surprises.
196201
197202 ---
198- Commit: ${{needs.validation .outputs.commitid }}
203+ Commit: ${{steps.commitid .outputs.short }}
199204 ---
200205
201206 $generated_release_notes
@@ -214,15 +219,15 @@ jobs:
214219 uses : jmgilman/actions-generate-checksum@v1
215220 with :
216221 method : sha512
217- patterns : hook_ *.tar.gz
222+ patterns : hook- *.tar.gz
218223
219224 - name : Update latest release
220225 uses : softprops/action-gh-release@v2
221226 with :
222227 name : Hook Latest Development Build
223228 body : ${{env.RELEASE_NOTES}}
224229 files : |
225- hook_ *.tar.gz
230+ hook- *.tar.gz
226231 checksum.txt
227232 prerelease : true
228233 tag_name : latest
You can’t perform that action at this time.
0 commit comments