Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ibaesuyeon authored Aug 20, 2024
1 parent e785db9 commit 4405b29
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@ on:
branches:
- develop # ์ตœ์ข… ๋ฐฐํฌ ์‹œ main์œผ๋กœ ๋ณ€๊ฒฝํ•  ๊ฒƒ

# ๋ณธ์ธ์ด ์„ค์ •ํ•œ ๊ฐ’์„ ์—ฌ๊ธฐ์„œ ์ฑ„์›Œ๋„ฃ์Šต๋‹ˆ๋‹ค.
# ๋ฆฌ์ „, ๋ฒ„ํ‚ท ์ด๋ฆ„, CodeDeploy ์•ฑ ์ด๋ฆ„, CodeDeploy ๋ฐฐํฌ ๊ทธ๋ฃน ์ด๋ฆ„
env:
AWS_REGION: ap-northeast-2
S3_BUCKET_NAME: my-github-actions-s3-bucket
CODE_DEPLOY_APPLICATION_NAME: my-codedeploy-app
CODE_DEPLOY_DEPLOYMENT_GROUP_NAME: my-codedeploy-deployment-group
S3_BUCKET_NAME: thinkerbell-cicd-s3-bucket
CODE_DEPLOY_APPLICATION_NAME: thinkerbell-codedeploy-app
CODE_DEPLOY_DEPLOYMENT_GROUP_NAME: thinkerbell-codedeploy-group

permissions:
contents: read
Expand All @@ -27,12 +25,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

# (2) JDK 11 ์„ธํŒ…
- name: Set up JDK 11
# (2) JDK 17 ์„ธํŒ…
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
java-version: '17'

# (3) Gradle build (Test ์ œ์™ธ)
- name: Build with Gradle
Expand Down

0 comments on commit 4405b29

Please sign in to comment.