-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
go-publish does not update the page banner in full-ig.zip so we need to zip our own copy; also saves the top level files needed for package feeds
- Loading branch information
1 parent
7a6756d
commit 1a033e7
Showing
1 changed file
with
11 additions
and
3 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 |
---|---|---|
|
@@ -94,13 +94,21 @@ jobs: | |
java -jar input-cache/publisher.jar -generate-package-registry webroot | ||
- name: Run Aubase Go Publisher build | ||
run: java -jar ./input-cache/publisher.jar -go-publish -source ./hl7au/au-fhir-base -web ./webroot -history ./fhir-history -registry ./ig-registry/fhir-ig-list.json -templates ./templates -tx https://txreg.azurewebsites.net/txdev | ||
|
||
run: java -jar ./input-cache/publisher.jar -go-publish -source ./hl7au/au-fhir-base -web ./webroot -history ./fhir-history -registry ./ig-registry/fhir-ig-list.json -templates ./templates | ||
|
||
- name: Zip Release | ||
uses: TheDoctor0/[email protected] | ||
with: | ||
type: 'zip' | ||
filename: 'output.zip' | ||
path: './webroot/fhir' | ||
exclusions: 'full-ig.zip' | ||
|
||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ig-output | ||
path: ./webroot/fhir/base/*/full-ig.zip | ||
path: ./output.zip | ||
|
||
- name: Upload Base webroot to S3 | ||
run: aws s3 cp ./webroot/fhir/base s3://hl7au-fhir-ig/fhir/ --recursive --only-show-errors #/${{ steps.get_tag.outputs.tag }} | ||
|