Skip to content

Commit

Permalink
improve s3 bucket targets
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleOps committed Jul 23, 2024
1 parent 91735a6 commit 170fe57
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/master_ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ jobs:
run: |
find . -type d
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: ig-output
path: output/full-ig.zip
# - name: Upload Artifact
# uses: actions/upload-artifact@v3
# with:
# name: ig-output
# path: output/full-ig.zip

# - name: 📂 Sync files # ftp is incredibly slow > 30 min sometimes, costing compute and efficency
# uses: SamKirkland/[email protected]
Expand All @@ -74,4 +74,4 @@ jobs:
# dry-run: true

- name: Upload artifacts to S3
run: aws s3 cp output/ s3://hl7au-fhir-ig/ci/${{ steps.extract_branch.outputs.branch }}/ --recursive --only-show-errors
run: aws s3 cp output/fhir/ s3://hl7au-fhir-ig/ci/${{ steps.extract_branch.outputs.branch }}/ --recursive --only-show-errors
12 changes: 6 additions & 6 deletions .github/workflows/profile_tag_trigger_publication.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ jobs:
run: |
find . -type d
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: publish-output
path: webroot/fhir/core
# - name: Upload Artifact
# uses: actions/upload-artifact@v3
# with:
# name: publish-output
# path: webroot/fhir/core

# - name: 📂 Sync files # ftp is incredibly slow > 30 min sometimes, costing compute and efficency
# uses: SamKirkland/[email protected]
Expand All @@ -114,4 +114,4 @@ jobs:
# dry-run: true

- name: Upload artifacts to S3
run: aws s3 cp ./webroot s3://hl7au-fhir-ig/core/${{ steps.get_tag.outputs.tag }} --recursive --only-show-errors
run: aws s3 cp ./webroot/fhir/core s3://hl7au-fhir-ig/fhir/core --recursive --only-show-errors #core/${{ steps.get_tag.outputs.tag }}

0 comments on commit 170fe57

Please sign in to comment.