Skip to content

Commit 21e911d

Browse files
committed
fix: workflows
1 parent 09df6ec commit 21e911d

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/deploy-release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,11 @@ jobs:
3131
- name: Archive published output
3232
run: |
3333
mkdir publish-artifact
34-
cp -r bin/Release/net*/publish/* publish-artifact/
34+
shopt -s nullglob
35+
mkdir -p publish-artifact
36+
for d in bin/Release/net*/publish; do
37+
cp -r "$d"/* publish-artifact/
38+
done
3539
shell: bash
3640

3741
- name: Upload artifact

0 commit comments

Comments
 (0)