This action provides the following functionality for GitHub Actions users:
The action can be configured with the following inputs:
The following example will build an Implementation Guide with the latest version of the IG Publisher, without SUSHI. The ig.ini file is expected in the top directory of the project.
name: Build the IG
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: qligier/fhir-ig-action@v0.3.0
Another example for a SUSHI Implementation Guide, with specific versions:
name: Build the IG
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: qligier/fhir-ig-action@v0.3.0
with:
ig-publisher: "1.6.25"
sushi: "3.11.1"
To build an Implementation Guide in another directory, you should use the working-directory configuration:
name: Build the IG
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: qligier/fhir-ig-action@v0.3.0
working-directory: ./folder/my-ig # This will use ./folder/my-ig/ig.ini
This project is released under the MIT License.
Issues and pull requests are very welcome :blue_heart:
Code contributions must pass the code checks: shfmt, ShellCheck and Prettier. See the GitHub Action file for details.
FHIR® is the registered trademark of HL7 and is used with the permission of HL7.