Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
jaklinger committed Apr 12, 2024
1 parent 6a7f9cf commit 76531eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
19 changes: 7 additions & 12 deletions .github/actions/components/caching/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,13 @@ inputs:
default: |
.venv
.timestamp
**/.terraform
**/dist/*zip
**/tfplan
**/swagger.yaml
**/infrastructure/terraform/**/output.json
.downloads
**/fhir/r4/*models.py
.tool-versions
pyproject.toml
poetry.lock
**/make.py
**/infrastructure/swagger/*.yaml
**/infrastructure/swagger/**/*.yaml
**/fhir-base/*json
**/.proxygen/*
**/infrastructure/terraform/**/*.asl.json
src
infrastructure
!**/.terraform/modules/**/*
runs:
using: "composite"
Expand All @@ -51,6 +42,10 @@ runs:
restore-keys: |
${{ env.GITHUB_SHA_SHORT }}-${{ inputs.cache-suffix == '' && 'head' || inputs.cache-suffix }}
- id: tree
shell: bash
run: tree -D -I '__pycache__|.git|.venv|.hypothesis|.pytest_cache'

- if: ${{ inputs.save-or-restore == 'save' }}
id: save-cache
uses: actions/cache/save@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/make/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ runs:
- name: Run "make" command
shell: bash
run: |
make ${{ inputs.command }} \
make --debug ${{ inputs.command }} \
AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID} \
AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY} \
AWS_SESSION_TOKEN=${AWS_SESSION_TOKEN}
Expand Down

0 comments on commit 76531eb

Please sign in to comment.