-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
343e3eb
commit 872d6ad
Showing
1 changed file
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,6 +90,15 @@ jobs: | |
# Run the publisher - don't run the batch script but run the line directly | ||
args: java -Xmx6g -jar ./input-cache/publisher.jar publisher -ig . -auto-ig-build -repo https://github.com/${{github.repository}}/tree/${{github.ref_name}} -package-cache-folder ./fhir-package-cache | ||
|
||
# Additional step to upload qa.json as an artifact | ||
- name: Upload qa.json artifact | ||
if: success() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: qa-json-artifact | ||
path: ./output/qa.json # Adjust the path based on where qa.json is located | ||
|
||
|
||
- name: Get branch names | ||
id: branch-name | ||
uses: tj-actions/[email protected] | ||
|