fix: 마감임박순에 전형일 없는 것 가장 후순위로 이동 (#217) #21
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: gohigher-backend-dev-cd | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Set Encryption Key | |
run: | | |
echo "encryption-key: $ENCRYPTION_KEY" >> $RESOURCE_PATH | |
env: | |
ENCRYPTION_KEY: ${{ secrets.ENCRYPTION_KEY }} | |
RESOURCE_PATH: './bootstrap/src/main/resources/application.yml' | |
- name: Change gradlew permission | |
run: sudo chmod 755 gradlew | |
- name: Make Jar File | |
run: ./gradlew bootJar | |
- 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 }} | |
aws-secret-access-key: ${{ secrets.AWS_ACCESS_SECRET_KEY }} | |
aws-region: ap-northeast-2 | |
- name: Upload to S3 | |
run: aws s3 cp --region ap-northeast-2 ./$GITHUB_SHA.zip s3://gohigher-backend-cd-bucket/backend/$GITHUB_SHA.zip | |
- name: Code Deploy To EC2 instance | |
run: aws deploy create-deployment | |
--application-name gohigher-backend-cd | |
--deployment-config-name CodeDeployDefault.AllAtOnce | |
--deployment-group-name gohigher-backend-cd | |
--s3-location bucket=gohigher-backend-cd-bucket,bundleType=zip,key=backend/$GITHUB_SHA.zip |