Running the `dita` command from a GitHub Action
GitHub Actions are a CI/CD workflow mechanism attached to GitHub. Each action is an individual unit of functionality that can be combined with other GitHub Actions to create workflows, which are triggered in response to certain GitHub events. As of version 3.6.1, the DITA-OT project provides an official dita-ot-action that can be used as a step within a GitHub workflow to publish documentation as part of your CI/CD pipeline.
About GitHub Actions
GitHub Actions can automate tasks such as document generation as part of your software development life cycle. GitHub Actions are event-driven, allowing a series of tasks to run one after another when a specified event has occurred.
Each step is an individual atomic task that can run commands in a job. A step can be either an action or a shell command. Each step in a job executes on the same runner, allowing the actions in that job to share data with each other, therefore files generated through the dita-ot-build
action can be archived or published by later actions within the same job.
In your GitHub repository, create the
.github/workflows/
directory to store your workflow files.In the
.github/workflows/
directory, create a new file calleddita-ot-build-actions.yml
and add the following code.name: CI 'on': push: branches: - master jobs: build-dita: name: Build DITA runs-on: ubuntu-latest steps: - name: Git checkout uses: actions/checkout@v2This setup ensures the action runs whenever code is updated on the
master
branch and checks out the codebase.In the same file, add the following code.
- name: Build PDF uses: dita-ot/dita-ot-action@master with: input: document.ditamap transtype: pdf output-path: outThis action specifies the following:
name defines the name of the action to be displayed within the GitHub repository
uses specifies the name and version of the GitHub Action to run. Use
dita-ot/dita-ot-action@master
to run the latest version.input specifies the name and location of the input map file within the GitHub repository (relative to the repository root)
transtype sets the output format to PDF, and
output-path writes the output to the
out
folder within the running action
The docsrc/samples
folder in the DITA-OT installation directory contains several complete examples. The following GitHub Action generates styled HTML and PDF outputs.
The Build HTML5 + Bootstrap step reuses the input, transtype and output-path settings. In addition, additional DITA-OT plug-ins can be loaded using the plugins parameter, with each plug-in separated by a comma or new line separator.
The Build PDF step uses an alternative syntax where the install and build parameters are used to run arbitrary commands from the command line.
See the docsrc/samples/github-actions
folder in the DITA-OT installation directory for additional examples of GitHub Actions for different scenarios.