-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
actions/upload-artifact will exclude hidden files by default #28
Comments
Yikes, that's an unfortunate breaking change for GitHub to release outside of a major version. Thank you for letting me know @anqqa. I think I regret the initial design for this action, which uses a random destination path on each run. I don't know why I thought that was useful, I think it was based on the expectation that someone might want to run the action multiple times as part of a single Workflow. Since then, the (very useful) option to specify a destination path was added as a contribution from @EliasVal in #20 which I think made this action much more usable and negates the need for random paths. For the next major version, I'll update this action to use a stable default destination (e.g: Regarding the actual impact of the breaking change in the context of this action, I took a look through some of the action's dependents to see which are using the Repositories using the
Repositories not using
Repositories not using If this is a representative sample, it seems as though only a small number of the repositories using this action will be experiencing unexpected behaviour now that v3 of Any thoughts on the above plan? Your feedback would be much appreciated! Thank you. |
Sounds good! You're right that removing the So I would wager that removing it would solve more problems than cause? |
@anqqa I've released v3.0.1 so that everyone using |
If the
destination
isn't set, the default.extracted-*
will be excluded by default if trying to runactions/upload-artifact
since actions/upload-artifact#598.Workarounds:
destination
to something not starting with.
(dot) in this actioninclude_hidden_files: true
withactions/upload-artifact
The text was updated successfully, but these errors were encountered: