refactor: 권한 추가 설정 #127
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
# This is a basic workflow to help you get started with Actions | |
name: BOOKAND-CICD | |
on: | |
push: | |
branches: [ "develop" ] | |
workflow_dispatch: | |
env: | |
PROJECT_NAME: bookand | |
BUCKET_NAME: bookand-cicd-bucket | |
CODE_DEPLOY_APP_NAME: bookandapp | |
DEPLOYMENT_GROUP_NAME: bookandapp_deploy | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Java JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Copy Secret | |
env: | |
OCCUPY_SECRET: ${{ secrets.OCCUPY_SECRET }} | |
OCCUPY_SECRET_DIR: src/main/resources | |
OCCUPY_SECRET_DIR_FILE_NAME: application-secret.properties | |
run: echo $OCCUPY_SECRET | base64 --decode > $OCCUPY_SECRET_DIR/$OCCUPY_SECRET_DIR_FILE_NAME | |
- name: Set up apple sign key file | |
env: | |
APPLE_SIGN_KEY: ${{ secrets.APPLE_SIGN_KEY }} | |
KEY_DIR: src/main/resources | |
KEY_FILE_NAME: apple_sign_key.p8 | |
run: echo $APPLE_SIGN_KEY | base64 --decode > $KEY_DIR/$KEY_FILE_NAME | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./gradlew | |
shell: bash | |
- name: Build with Gradle | |
run: ./gradlew build | |
shell: bash | |
- name: Make Zip File | |
run: zip -qq -r ./$GITHUB_SHA.zip . | |
shell: bash | |
- 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 --region ap-northeast-2 ./$GITHUB_SHA.zip s3://$BUCKET_NAME/$PROJECT_NAME/$GITHUB_SHA.zip | |
- name: Code Deploy | |
run: aws deploy create-deployment --application-name $CODE_DEPLOY_APP_NAME --deployment-config-name CodeDeployDefault.OneAtATime --deployment-group-name $DEPLOYMENT_GROUP_NAME --s3-location bucket=$BUCKET_NAME,bundleType=zip,key=$PROJECT_NAME/$GITHUB_SHA.zip |