Replies: 1 comment
-
Today there's no way to do this, but there has been a proposal for this for some time: https://github.com/JamesIves/github-pages-deploy-action/blob/dev/src/git.ts#L184 You could also consider simply removing the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm building a pipeline to allow gh-pages deployments from PR branches, using the PR's number.
So my gh-pages branch looks something like this:
Since the PR numbers will always increase, and the
.nojekyll
files aren't cleaned up, I end up with a bunch of folders that only contain a.nojekyll
file.Is it somehow possible to circumvent this behaviour and clean up these files as well? Like the opposite of
clean-exclude
,clean-include
, that could be part of thewith
property as well and could be set to theDefaultExcludedFiles
by default.Here's an example repo with my issue: https://github.com/Lenni009/action-test/tree/cd2616e
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions