Skip to content

Commit 29be915

Browse files
authored
Rework use of actions/upload-artifact (#135)
## Description Uses the correct path to the build files when passing them to upload-artifact so that the files are actually uploaded. ## Why is this needed Files weren't being uploaded. ## How Has This Been Tested? From my fork. ## How are existing users impacted? What migration steps/scripts do we need? They can fetch files built by official CI instead of being required to build locally.
2 parents 57d1fcd + 2dfc6cf commit 29be915

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@ jobs:
5959
6060
- uses: actions/upload-artifact@v3
6161
with:
62-
name: hook-${{steps.commitid.outputs.short}}.tar.gz
63-
path: out/${{steps.commitid.outputs.short}}/rel/hook-${{steps.commitid.outputs.short}}.tar.gz
62+
name: hook-${{steps.commitid.outputs.short}}
63+
path: out/${{steps.commitid.outputs.short}}/rel/hook_*.tar.gz

0 commit comments

Comments
 (0)