We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f269d3 commit 58e9f80Copy full SHA for 58e9f80
.github/workflows/yappu-world-server-lambda-cd.yaml
@@ -33,10 +33,11 @@ jobs:
33
run: |
34
./gradlew shadowJar
35
36
- # Github Action 실행 서버 IP 추출
37
- - name: Get Github Actions IP
38
- id: ip
39
- uses: candidob/[email protected]
+ - name: Install AWS CLI
+ run: |
+ curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
+ unzip awscliv2.zip
40
+ sudo ./aws/install
41
42
# AWS Credentials
43
- name: Configure AWS Credentials
@@ -48,9 +49,10 @@ jobs:
48
49
50
- name: Deploy to AWS Lambda
51
52
+ export AWS_PAGER=""
53
aws lambda update-function-code \
54
--function-name sendSentryAlertsToDiscord \
- --zip-file fileb://build/libs/yappu-world-server-lambda-shadow.jar
55
+ --zip-file fileb://build/libs/yappu-world-server-lambda-shadow.jar
56
57
# Discord Notification
58
- name: CD Success Notification
0 commit comments