#
Some checks failed
FHIR IG CI/CD Pipeline with Version Persistence / build-ig (push) Waiting to run
FHIR IG CI/CD Pipeline with Version Persistence / deploy (push) Has been cancelled

This commit is contained in:
2026-04-10 15:29:52 +06:00
parent 311a853c31
commit 3363403c8e

View File

@@ -16,12 +16,6 @@ jobs:
runs-on: fhir-runner runs-on: fhir-runner
steps: steps:
- name: Prepare IG Publisher
run: |
mkdir -p input-cache
cp /home/mishealth/gitea-runner/input-cache/publisher.jar input-cache/publisher.jar
ls -al input-cache
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
@@ -375,18 +369,11 @@ jobs:
echo "Previous package cached:" echo "Previous package cached:"
ls previous-packages ls previous-packages
- name: Prepare IG Publisher
run: |
mkdir -p input-cache
cp /home/mishealth/gitea-runner/input-cache/publisher.jar input-cache/publisher.jar
ls -al input-cache
- name: Build FHIR IG - name: Build FHIR IG
run: | run: |
echo "Building FHIR IG version ${{ steps.version.outputs.version }}..." echo "Building FHIR IG version ${{ steps.version.outputs.version }}..."
CONTAINER_ID=$(docker create \ CONTAINER_ID=$(docker create \
-v $(pwd)/input-cache:/tmp/build/ig/input-cache \
-v $(pwd)/previous-packages:/previous-packages \ -v $(pwd)/previous-packages:/previous-packages \
hl7fhir/ig-publisher-base:latest \ hl7fhir/ig-publisher-base:latest \
/bin/bash -c " /bin/bash -c "
@@ -398,7 +385,7 @@ jobs:
rm -f package-list.json rm -f package-list.json
_updatePublisher.sh -y
_genonce.sh _genonce.sh
") ")