Skip to content

Commit ea2263f

Browse files
committed
build: tell upload-artifact to upload what i told it to upload
upload-artifact tries to protect me by refusing to upload hidden files, even if I explicitly request those files with my `path` setting. Issue here: actions/upload-artifact#614 I have to enable hidden file uploads to get it to work with 4.4.
1 parent 254fdec commit ea2263f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/coverage.yml

+2
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ jobs:
129129
with:
130130
name: metacov-${{ env.MATRIX_ID }}
131131
path: .metacov.*
132+
include-hidden-files: true
132133

133134
combine:
134135
name: "Combine coverage data"
@@ -187,6 +188,7 @@ jobs:
187188
with:
188189
name: html_report
189190
path: htmlcov
191+
include-hidden-files: true
190192

191193
- name: "Get total"
192194
id: total

.github/workflows/kit.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,5 @@ jobs:
308308
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
309309
with:
310310
name: signatures
311-
path: |
312-
*.sigstore.json
311+
path: *.sigstore.json
313312
retention-days: 7

0 commit comments

Comments
 (0)