move AWS vars closer to the usage [ci:force]

This commit is contained in:
Denys Vuika
2025-08-27 11:36:47 -04:00
parent bd31b95de8
commit d83da64df5
2 changed files with 6 additions and 2 deletions

View File

@@ -6,7 +6,9 @@ runs:
- name: download and extract artifacts from s3
shell: bash
env:
REMOTE_PATH: "alfresco-ng2-components/build-cache/${{ github.run_id }}"
REMOTE_PATH: "alfresco-ng2-components/build-cache/${{ github.run_id }}"
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run: |
packages=( dist nxcache node_modules )
for i in "${packages[@]}"; do
@@ -24,4 +26,4 @@ runs:
echo "====NXCACHE===="
find nxcache -maxdepth 1 -type d
echo "====ADF===="
find node_modules/@alfresco/ -maxdepth 1 -type d
find node_modules/@alfresco/ -maxdepth 1 -type d

View File

@@ -8,6 +8,8 @@ runs:
shell: bash
env:
REMOTE_PATH: "alfresco-ng2-components/build-cache/${{ github.run_id }}"
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run: |
packages=( dist nxcache node_modules )
for i in "${packages[@]}"; do