Skip to content

Commit 1443a3f

Browse files
author
Yanjun
committed
fix(ci): upload-artifact include-hidden-files for .dist/
The v0.8.4 root-cleanup renamed dist/ → .dist/. The actions/upload-artifact@v7 action defaults to include-hidden-files: false, which made the "Upload artifacts" step refuse the .dist/ path with "No files were found". Set include-hidden-files: true so the hidden directory is honored.
1 parent 4e596c6 commit 1443a3f

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,3 +163,8 @@ jobs:
163163
path: .dist/
164164
retention-days: 7
165165
if-no-files-found: error
166+
# v0.8.5 — .dist/ is hidden (leading dot) per the v0.8.4 root-
167+
# cleanup. The default for include-hidden-files is false, which
168+
# causes upload-artifact to refuse the path entirely with
169+
# "No files were found". Explicitly opt in.
170+
include-hidden-files: true

0 commit comments

Comments
 (0)