Skip to content

Commit 10a328c

Browse files
Artifacts are dash delimited not underscore.
Signed-off-by: Jacob Weinstock <[email protected]>
1 parent d538339 commit 10a328c

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/build-all-matrix.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)