Skip to content

Commit b4a9996

Browse files
committed
Fix AWS typo in linux and apple builds as well
1 parent 6b83cd5 commit b4a9996

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/buildApple.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ jobs:
8787
- name: Capture AWS secrets for vcpkg cache
8888
uses: aws-actions/configure-aws-credentials@v4
8989
with:
90-
aws-access-key-id: ${{ env.AWS_INTERNAL_SERVICES_VCPKG_ACCESS_KEY }}
91-
aws-secret-access-key: ${{ env.AWS_INTERNAL_SERVICES_VCPKG_SECRET_KEY }}
90+
aws-access-key-id: ${{ secrets.AWS_INTERNAL_SERVICES_VCPKG_ACCESS_KEY }}
91+
aws-secret-access-key: ${{ secrets.AWS_INTERNAL_SERVICES_VCPKG_SECRET_KEY }}
9292
aws-region: us-east-1
9393
- name: Build cesium-native for macOS ARM64
9494
run: |

.github/workflows/buildLinux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ jobs:
6767
- name: Capture AWS secrets for vcpkg cache
6868
uses: aws-actions/configure-aws-credentials@v4
6969
with:
70-
aws-access-key-id: ${{ env.AWS_INTERNAL_SERVICES_VCPKG_ACCESS_KEY }}
71-
aws-secret-access-key: ${{ env.AWS_INTERNAL_SERVICES_VCPKG_SECRET_KEY }}
70+
aws-access-key-id: ${{ secrets.AWS_INTERNAL_SERVICES_VCPKG_ACCESS_KEY }}
71+
aws-secret-access-key: ${{ secrets.AWS_INTERNAL_SERVICES_VCPKG_SECRET_KEY }}
7272
aws-region: us-east-1
7373
- name: Install Ninja and patchelf
7474
run: |

0 commit comments

Comments
 (0)