Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
florianschoffke committed Feb 19, 2024
1 parent 0b98dd2 commit 0785f9e
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
PATH_TO_EXAMPLES: 'temp_folder/'
FHIR_VERSION: "4.0"
INPUT_JAVA_VALIDATION_OPTIONS: "-tx http://tx.fhir.org -debug -allow-example-urls true"
IG_DEPENDENCIES: "-ig de.basisprofil.r4#1.3.2 -ig hl7.fhir.r4.core#4.0.1 -ig kbv.ita.for#1.1.0 -ig kbv.ita.erp#1.1.x -ig de.gematik.erezept-workflow.r4 1.x.x"
IG_DEPENDENCIES: "-ig de.basisprofil.r4#1.4.0 -ig hl7.fhir.r4.core#4.0.1 -ig kbv.ita.for#1.1.0 -ig kbv.ita.erp#1.1.x -ig de.gematik.erezept-workflow.r4 1.x.x"

jobs:
CI_EXAMPLES_VALIDATION:
Expand All @@ -30,6 +30,13 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: '20'

# Identify and Copy Changed .json and .xml Files
- name: Identify and Copy Changed .json and .xml Files
run: |
mkdir -p temp_folder # Create a temp folder
git diff --name-only main | grep -E '\.(json|xml)$' | xargs -I {} cp {} temp_folder/
ls -l './temp_folder'
# Install .NET runtime
- name: Setup .NET Core SDK
Expand All @@ -44,11 +51,7 @@ jobs:
distribution: 'microsoft'
java-version: '17'

- name: Identify and Copy Changed .json and .xml Files
run: |
mkdir -p temp_folder # Create a temp folder
git diff --name-only origin/main...HEAD | grep -E '\.(json|xml)$' | xargs -I {} cp {} temp_folder/
ls -l './temp_folder'



# --------------------------------------------------------------------------------------------------- #
Expand Down

0 comments on commit 0785f9e

Please sign in to comment.