actions4gh/Deploy GitHub wiki

📖 GitHub Action to publish files to a GitHub wiki

View on GitHub

Trust Signals

Scorecard Score
not yet scored
Maintenance Recency
Stale
License
None
namedescriptionrequireddefault
github-server-urlThe base URL for the GitHub instance that you are trying to clone from, will use environment defaults to fetch from the same instance that the workflow is running from unless specified. Example URLs are https://github.com or https://my-ghes-server.example.com. The default is github.server_url. It's unlikely you need to change this unless you are deploying across a GHES boundary.${{ github.server_url }}
repositoryThe repository slug to use as the base project target of the wiki. The contents will be deployed to this repository's wiki tab, not the repository itself. Use this if you are pushing contents across the repository boundary. Defaults to the current repository from github.repository.${{ github.repository }}
tokenSet this if you are pushing to a different repository. This token will need write permissions. The default is github.token.${{ github.token }}
pathPath of the directory containing the wiki files to be deployed. Defaults to the wiki/ folder.wiki
namedescription
wiki-urlThe URL of the published GitHub wiki homepage. Usually something like https://github.com/octocat/project/wiki.