Skip to content

Commit

Permalink
Merge branch 'main' into br-update-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
brynrhodes authored Sep 9, 2024
2 parents feca73c + ae8964e commit 481d707
Show file tree
Hide file tree
Showing 11 changed files with 37 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ghbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
uses: docker://hl7fhir/ig-publisher-base:latest
with:
# Run the publisher - don't run the batch script but run the line directly
args: java -Xmx4g -jar ./input-cache/publisher.jar publisher -ig . -auto-ig-build -repo https://github.com/${{github.repository}} -package-cache-folder ./fhir-package-cache
args: java -Xmx6g -jar ./input-cache/publisher.jar publisher -ig . -auto-ig-build -repo https://github.com/${{github.repository}}/tree/${{github.ref_name}} -package-cache-folder ./fhir-package-cache

- name: Get branch names
id: branch-name
Expand Down
33 changes: 33 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Release build

on:
release:
types: [created]
workflow_dispatch:

jobs:
check:
runs-on: ubuntu-latest
outputs:
file_exists: ${{ steps.checkfile.outputs.exists }}
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.event.release.tag_name }}

- name: Check for publication-request.json
id: checkfile
run: |
if [[ -f "publication-request.json" ]]; then
echo "::set-output name=exists::true"
else
echo "::set-output name=exists::false"
fi
trigger:
needs: check
if: needs.check.outputs.file_exists == 'true'
uses: WorldHealthOrganization/smart-html/.github/workflows/release.yml@main
# with:
# tag_name: ${{ github.event.release.tag_name }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
![QA hints](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fworldhealthorganization.github.io%2Fsmart-base%2Fqa.json&query=%24.hints&logoColor=yellow&label=QA%20hints&color=yellow)

[https://build.fhir.org/ig/WorldHealthOrganization/smart-base](https://build.fhir.org/ig/WorldHealthOrganization/smart-base)

# WHO SMART GUIDELINES - Base IG

This ImplementationGuide contains base profiles and common dependencies to assist in the creation of SMART Implementation Guides.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions sushi-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ title: SMART Base
description: An empty Implementation Guide to be used as a starting point for building SMART Guidelines Implementation Guides
status: draft # draft | active | retired | unknown
version: 0.1.1
#fhirVersion: 4.3.0 # https://www.hl7.org/fhir/valueset-FHIR-version.html
#fhirVersion: 5.0.0 # https://www.hl7.org/fhir/valueset-FHIR-version.html
# fhirVersion: 4.3.0 # https://www.hl7.org/fhir/valueset-FHIR-version.html
# fhirVersion: 5.0.0 # https://www.hl7.org/fhir/valueset-FHIR-version.html
fhirVersion: 4.0.1 # https://www.hl7.org/fhir/valueset-FHIR-version.html
copyrightYear: 2023+
releaseLabel: ci-build # ci-build | draft | qa-preview | ballot | trial-use | release | update | normative+trial-use
Expand Down

0 comments on commit 481d707

Please sign in to comment.