Skip to content

Commit

Permalink
Install aarch64 Node.js deps in correct deployment job
Browse files Browse the repository at this point in the history
We need to install aarch64 Node.js deps in the CI job that creates
the Lambda deployment bundles.
  • Loading branch information
lpsinger committed May 31, 2024
1 parent 39b9923 commit c4542e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
node-version: '20'
- name: NPM Install
run: npm ci
run: npm ci --os=linux --cpu=arm64
- name: Build
run: npm run build
- name: Upload artifacts
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
with:
node-version: '20'
- name: NPM Install
run: npm ci --os=linux --cpu=arm64
run: npm ci
- name: Download artifacts
uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit c4542e0

Please sign in to comment.