GitHub tasks
Tasks to interact with the repository if it's hosted in GitHub.
Context
It provides build state information for the GitHub tasks. These properties are
defined in the
GitHubBuildContext
class.
| Property | Default value | CLI argument | Description |
|---|---|---|---|
RepositoryOwner |
Env var GITHUB_REPOSITORY |
Name of the repository owner | |
RepositoryName |
Env var GITHUB_REPOSITORY |
Name of the repository | |
GitHubToken |
Env var GITHUB_TOKEN |
GitHub token for reading release notes |
Tasks
Tasks are prefixed with PleOps.Recipe.GitHub.
Export release notes
- Task name:
PleOps.Recipe.GitHub.ExportReleaseNotes - Type:
ExportReleaseNotesTask - Depends on:
RestoreTools - Condition:
GitHubToken,RepositoryOwnerandRepositoryNameare not empty. - Build context:
PleOpsBuildContext- Uses:
VersionChangelogFileChangelogNextFileGitHubContext.GitHubTokenGitHubContext.RepositoryOwnerGitHubContext.RepositoryName
- Changes: none
- Uses:
Export every release notes from GitHub releases of the repo into
ChangelogFile. Also exports the release notes from the release that matches
the current version (if any) into ChangelogNextFile.
Upload release binaries
- Task name:
PleOps.Recipe.GitHub.UploadReleaseBinaries - Type:
UploadReleaseBinaries - Depends on:
RestoreTools - Condition: build type is
StableandGitHubTokenis not empty. - Build context:
PleOpsBuildContext- Uses:
VersionGitHubContext.GitHubTokenGitHubContext.RepositoryOwnerGitHubContext.RepositoryNameDeliveriesContext.BinaryFiles
- Changes: none
- Uses:
Upload the release artifact binaries into the GitHub release that matches the current version.
The task will not fail if there are no binaries. It will just log a message and do nothing.