Skip to content

Commit c276f10

Browse files
authored
Update build-ig.yml
1 parent f3840db commit c276f10

File tree

1 file changed

+27
-2
lines changed

1 file changed

+27
-2
lines changed

.github/workflows/build-ig.yml

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,33 @@ jobs:
1818
steps:
1919
- name: Checkout code
2020
uses: actions/checkout@v3
21-
- name: Get FHIR packages
22-
uses: cybernop/fill-fhir-cache@v1
21+
- name: Setup NodeJS
22+
uses: actions/setup-node@v3
23+
with:
24+
node-version: 18
25+
- uses: actions/setup-dotnet@v3
26+
with:
27+
dotnet-version: "8.0"
28+
- name: Create temp dir and copy sushi project file
29+
run: mkdir temp && cp -v ${{ inputs.project-dir }}/sushi-config.yaml temp/
30+
shell: bash
31+
- name: Install sushi locally
32+
working-directory: temp
33+
run: npm install -g fsh-sushi
34+
shell: bash
35+
- name: Install Firely Terminal
36+
run: dotnet tool install -g firely.terminal
37+
shell: bash
38+
- name: Get dependencies
39+
working-directory: temp
40+
run: sushi
41+
shell: bash
42+
- name: Inflate FHIR packages
43+
run: fhir inflate-cache
44+
shell: bash
45+
- name: Remove temporary files
46+
run: npm remove -g fsh-sushi && rm -rf temp
47+
shell: bash
2348
- name: Build profiles
2449
uses: cybernop/build-fhir-ig@v1
2550
with:

0 commit comments

Comments
 (0)