Reputation: 3003
I want to use the Cake build system for building my project and I want use it in GitHub action for helping continuous integration and more.
But I couldn't find any useful document to what are you doing. Is there one?
Is there any documentation or best practice about this?
I searched for it, but I did not find anything useful.
Upvotes: 0
Views: 336
Reputation: 3003
After some working I found some useful information about it in the GitHub Cake project
you can find general information about the build system in Build System aliases
you can find specific information about GitHub Actions in GitHubActions(ICakeContext) method
you can find specific information about the GitHub Actions environment in GitHubActionsEnvironmentInfo Class
and finally find specific actions in Cake for GitHub Actions
Upvotes: 1