Fix GitHub release asset upload (#2114)

ghr only looks at immediate descendents of the path it is provided, so
we need to ensure that ghr-dist/ is flattened.
This commit is contained in:
Eli Young
2022-05-18 11:34:34 -07:00
committed by GitHub
parent aeda1dfdcc
commit 9aca802258

View File

@@ -494,7 +494,7 @@ jobs:
name: "Setup files for ghr"
command: |
mkdir -p ./ghr-dist
cp -r --backup=numbered ./build/{macos-release,win-release,linux}/* ./ghr-dist
find ./build/{macos-release,win-release,linux} -type f -exec cp --backup=numbered -t ./ghr-dist {} +
- run:
name: "Publish Release on GitHub"
command: |