Skip to content

Commit

Permalink
Merge pull request #739 from martincostello/switch-to-graviton
Browse files Browse the repository at this point in the history
Switch back to Graviton
  • Loading branch information
martincostello authored Mar 14, 2023
2 parents fba0da0 + 092a9ec commit 8f689eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
run: |
aws lambda update-function-code \
--function-name ${{ env.LAMBDA_FUNCTION }}-dev \
--architectures x86_64 \
--architectures arm64 \
--publish \
--zip-file fileb://./${{ env.LAMBDA_FUNCTION }}.zip \
> /dev/null
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
run: |
aws lambda update-function-code \
--function-name ${{ env.LAMBDA_FUNCTION }} \
--architectures x86_64 \
--architectures arm64 \
--publish \
--zip-file fileb://./${{ env.LAMBDA_FUNCTION }}.zip \
> /dev/null
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ function DotNetPublish {

if ($IsLinux -And (-Not $UseManagedRuntime)) {
$additionalArgs += "--runtime"
$additionalArgs += "linux-x64"
$additionalArgs += "linux-arm64"
$additionalArgs += "--self-contained"
$additionalArgs += "true"
$additionalArgs += "/p:AssemblyName=bootstrap"
Expand Down

0 comments on commit 8f689eb

Please sign in to comment.