chore(deps): update docker.io/library/python:3.12.4-alpine docker dig… #2835
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-docs | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
deploy: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
pages: write | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1 | |
with: | |
python-version: 3.x | |
- run: pip install mkdocs-material==9.* | |
- run: mkdocs build --strict --verbose --site-dir=./site | |
# - name: build FHIR IG | |
# uses: ghcr.io/miracum/ig-build-tools:v1.0.74@sha256:c33b9cef9076d91f5caa5f4229b0b3591ec8edbfe9986a40b981b1ee6394287c | |
# working-directory: fhir/ig | |
# run: java -jar /usr/local/bin/publisher.jar -ig ig.ini | |
# - name: copy FHIR IG output into mkdocs site | |
# run: cp -r fhir/ig/output/ site/fhir | |
- run: mkdocs gh-deploy --force | |
if: ${{ github.event_name != 'pull_request' }} |