Merge pull request #8 from LikeLion-12th-SKHU/colorlist #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java CI/CD with Gradle and AWS CodeDeploy | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./gradlew | |
- name: Grant execute permission for scripts | |
run: chmod +x ./scripts/*.sh | |
- name: Build with Gradle | |
run: ./gradlew clean build -x test | |
- name: Prepare artifacts for deployment | |
run: | | |
mkdir -p before-deploy | |
cp scripts/*.sh before-deploy/ | |
cp appspec.yml before-deploy/ | |
cp build/libs/*.jar before-deploy/ | |
cd before-deploy && zip -r before-deploy * | |
cd ../ && mkdir -p deploy | |
mv before-deploy/before-deploy.zip deploy/reredeployfiles.zip | |
- name: Deploy to S3 (GitHub Artifacts) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: deploy | |
path: deploy | |
- name: AWS ์๊ฒฉ์ฆ๋ช ์ค์ | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }} | |
aws-region: ap-northeast-2 | |
- name: S3์ ๋ฐฐํฌ | |
run: aws s3 cp deploy/reredeployfiles.zip s3://rerebucket/reredeployfiles.zip | |
- name: AWS CodeDeploy๋ฅผ ์ฌ์ฉํ ๋ฐฐํฌ | |
run: | | |
aws deploy create-deployment \ | |
--application-name rere-deploy \ | |
--deployment-group-name rere-deploy-group \ | |
--s3-location bucket=rerebucket,key=reredeployfiles.zip,bundleType=zip \ | |
--region ap-northeast-2 |