Skip to content

Commit

Permalink
build: tell upload-artifact to upload what i told it to upload
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
nedbat committed Nov 2, 2024
1 parent 254fdec commit ea2263f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ jobs:
with:
name: metacov-${{ env.MATRIX_ID }}
path: .metacov.*
include-hidden-files: true

combine:
name: "Combine coverage data"
Expand Down Expand Up @@ -187,6 +188,7 @@ jobs:
with:
name: html_report
path: htmlcov
include-hidden-files: true

- name: "Get total"
id: total
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/kit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,5 @@ jobs:
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
with:
name: signatures
path: |
*.sigstore.json
path: *.sigstore.json
retention-days: 7

0 comments on commit ea2263f

Please sign in to comment.