Skip to content

Commit

Permalink
upload the output folder too
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleOps committed Jul 25, 2024
1 parent c19ca3e commit 53d5a48
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/profile_tag_trigger_publication.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
with:
repository: hl7au/au-fhir-base
path: hl7au/au-fhir-base
ref: ${{ steps.get_tag.outputs.tag }}
ref: ${{ steps.get_tag.outputs.tag }} # explicit, not usually since the default is to checkout the initiating commit

- name: Checkout IG History Template Repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -96,5 +96,8 @@ jobs:
- 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

- name: Upload artifacts to S3
run: aws s3 cp ./webroot/fhir/base s3://hl7au-fhir-ig/fhir/ --recursive --only-show-errors #/${{ steps.get_tag.outputs.tag }}
- 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 }}

- name: Upload Base output to S3
run: aws s3 cp ./hl7au/au-fhir-base/output s3://hl7au-fhir-ig/fhir/output --recursive --only-show-errors #/${{ steps.get_tag.outputs.tag }}

0 comments on commit 53d5a48

Please sign in to comment.