Update and rename C2F703DD2145045C23AC74D27F8EB2E4.txt to 03C9B2CF0A2… #61
Workflow file for this run
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: CI/CD using Github Actions & AWS CodeDeploy | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
env: | |
S3_BUCKET_NAME: waggle-bucket | |
PROJECT_NAME: Waggle | |
CODE_DEPLOY_APP_NAME: waggle | |
CODE_DEPLOY_GROUP_NAME: waggle-deploy | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Gradle Caching | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Build with Gradle | |
run: ./gradlew build -x test | |
- name: Prepare Deployment Files | |
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 ${{ env.PROJECT_NAME }} * | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ap-northeast-2 | |
- name: Upload to S3 | |
run: aws s3 cp before-deploy/${{ env.PROJECT_NAME }}.zip s3://$S3_BUCKET_NAME/$PROJECT_NAME/${{ env.PROJECT_NAME }}.zip | |
- name: Code Deploy | |
run: aws deploy create-deployment --application-name $CODE_DEPLOY_APP_NAME --deployment-config-name CodeDeployDefault.AllAtOnce --deployment-group-name $CODE_DEPLOY_GROUP_NAME --s3-location bucket=$S3_BUCKET_NAME,bundleType=zip,key=$PROJECT_NAME/${{ env.PROJECT_NAME }}.zip |