File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -45,18 +45,27 @@ jobs:
45
45
# PATH_TO_QUALITY_CONTROL_RULES: qc/custom
46
46
DOTNET_VALIDATION_ENABLED : true
47
47
JAVA_VALIDATION_ENABLED : true
48
- JAVA_VALIDATION_OPTIONS : -allow-example-urls true -advisor-file src/fhir/validator/advisor.json -html-output validation.html -language de -display-issues-are-warnings -output-style compact -show-message-ids -resolution-context file:src/fhir/fsh-generated/resources/ -html-output validation.html -language de -display-issues-are-warnings
48
+ JAVA_VALIDATION_OPTIONS : -allow-example-urls true -advisor-file src/fhir/validator/advisor.json -html-output validation-output/validation .html -language de -display-issues-are-warnings -output-style compact -show-message-ids -resolution-context file:src/fhir/fsh-generated/resources/ -html-output validation.html -language de -display-issues-are-warnings
49
49
SIMPLIFIER_USERNAME : ${{ secrets.SIMPLIFIER_USERNAME }}
50
50
SIMPLIFIER_PASSWORD : ${{ secrets.SIMPLIFIER_PASSWORD }}
51
51
SUSHI_ENABLED : true
52
52
SUSHI_OPTIONS : src/fhir/
53
53
EXPECTED_FAILS : VALIDATION_CONFORMANCE_DOTNET VALIDATION_CONFORMANCE_JAVA
54
54
55
+ - name : Deploy validation report to GitHub Pages
56
+ uses : peaceiris/actions-gh-pages@v4
57
+ with :
58
+ github_token : ${{ secrets.GITHUB_TOKEN }}
59
+ publish_branch : gh-pages
60
+ destination_dir : ${{ github.ref_name }}
61
+ publish_dir : ${{ github.workspace }}/validation-output/
62
+
63
+
55
64
- name : Upload validation report
56
65
uses : actions/upload-artifact@v4
57
66
with :
58
67
name : FHIR_Validation_Report
59
- path : ${{ github.workspace }}/validation.html
68
+ path : ${{ github.workspace }}/validation-output/validation .html
60
69
if-no-files-found : error
61
70
retention-days : 30
62
71
compression-level : 0
You can’t perform that action at this time.
0 commit comments