From 455fd529c41111b73be36a4b4e44a56ee4402255 Mon Sep 17 00:00:00 2001 From: jobayer Date: Tue, 30 Sep 2025 11:02:02 +0600 Subject: [PATCH] fix: :bug: install fsh-sushi in Docker container before building FHIR IG --- .gitea/workflows/ci-cd.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci-cd.yaml b/.gitea/workflows/ci-cd.yaml index 58170fc..ba8c263 100644 --- a/.gitea/workflows/ci-cd.yaml +++ b/.gitea/workflows/ci-cd.yaml @@ -39,7 +39,7 @@ jobs: # Create a container (don't start yet) CONTAINER_ID=$(docker create \ hl7fhir/ig-publisher-base:latest \ - /bin/bash -c "cp -r /home/publisher/ig /tmp/build && cd /tmp/build && _updatePublisher.sh -y && _genonce.sh") + /bin/bash -c "npm install -g fsh-sushi && cp -r /home/publisher/ig /tmp/build && cd /tmp/build && _updatePublisher.sh -y && _genonce.sh") echo "Container ID: $CONTAINER_ID"