Skip to content

Commit

Permalink
manual zip
Browse files Browse the repository at this point in the history
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
brettesler-ext authored Aug 2, 2024
1 parent 7a6756d commit 1a033e7
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/profile_tag_trigger_publication.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 1a033e7

Please sign in to comment.