Skip to content

Commit 48f6655

Browse files
Artifacts are dash delimited not underscore. (#215)
## Description <!--- Please describe what this PR is going to change --> ## Why is this needed <!--- Link to issue you have raised --> Fixes: # ## How Has This Been Tested? <!--- Please describe in detail how you tested your changes. --> <!--- Include details of your testing environment, and the tests you ran to --> <!--- see how your change affects other areas of the code, etc. --> ## How are existing users impacted? What migration steps/scripts do we need? <!--- Fixes a bug, unblocks installation, removes a component of the stack etc --> <!--- Requires a DB migration script, etc. --> ## Checklist: I have: - [ ] updated the documentation and/or roadmap (if required) - [ ] added unit or e2e tests - [ ] provided instructions on how to upgrade
2 parents d538339 + 10a328c commit 48f6655

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)