Skip to content

Commit

Permalink
fix: zip file path
Browse files Browse the repository at this point in the history
  • Loading branch information
shin4488 committed Jun 16, 2023
1 parent c7adcb3 commit 69490b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lambda_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ jobs:
- name: Deploy
# デプロイ結果のoutputはターミナルに表示したくないため、いったんファイルに出力させてそのファイルをすぐ削除している
run: >
aws lambda update-function-code --function-name ${{ secrets.AWS_LAMBDA_FUNCTION_NAME }} --zip-file fileb://TwitterMlbBotExecution.zip --publish >> deploy.log
aws lambda update-function-code --function-name ${{ secrets.AWS_LAMBDA_FUNCTION_NAME }} --zip-file fileb://${GITHUB_WORKSPACE}/TwitterMlbBotExecution/src/TwitterMlbBotExecution/bin/Debug/net6.0/TwitterMlbBotExecution.zip --publish >> deploy.log
&& rm deploy.log

0 comments on commit 69490b2

Please sign in to comment.