chore(deps): update docker.io/bitnami/kubectl:1.27.5 docker digest to d7dfaa5 #846
Workflow file for this run
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@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | |
- uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0 # v4.6.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' }} |