Replies: 1 comment 2 replies
-
Having looked into this a little bit, I don't think we'd need a shared workflow for this, because there are two existing actions that both seem to be able to handle the entire publishing step. At best, we might wrap it into a composite action that takes inputs and handles some light logic around pathing for where to publish PRs. But we might be able to get away with only a sample/example. The existing actions are:
Re: "commit bloat": both of the actions above support an option that doesn't keep building up commits (basically a force-push I suppose) |
Beta Was this translation helpful? Give feedback.
-
GH Pages might be a nice target for publishing, as it'd be (theoretically) available to any collection without an external service. Since publishing primarily involves commits, it could be done completely within the actions ecosystem, though I know folks can be quite wary of automation committing to a repository.
Some things to think about are how to handle publishing for different PRs (sub-directories?), commit bloat (does this matter?), support for publishing in separate repositories (will require a PAT).
Beta Was this translation helpful? Give feedback.
All reactions