[#1]deploy: pull request action name 수정, ecs task 필요없는 정보 삭제 #6
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: Pull Request build | |
on: | |
pull_request: | |
branches: [ "develop" ] | |
env: | |
AWS_REGION: ap-northeast-2 | |
ECR_REPOSITORY: edupi_gateway | |
ECS_SERVICE: gateway | |
ECS_CLUSTER: BE | |
ECS_TASK_DEFINITION: edupi_gateway-revision.json | |
CONTAINER_NAME: gateway | |
permissions: | |
contents: read | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
environment: production | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Copy Secret yml | |
env: | |
CREATE_SECRET: ${{secrets.EDUPI_GATEWAY_DEV_APPLICATION_YML}} | |
CREATE_SECRET_DIR: src/main/resources | |
CREATE_SECRET_DIR_FILE_NAME: application.yml | |
run: echo $CREATE_SECRET | base64 --decode > $CREATE_SECRET_DIR/$CREATE_SECRET_DIR_FILE_NAME | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Test with Gradle | |
run: ./gradlew test | |
- name: Cleanup Gradle Cache | |
if: ${{ always() }} | |
run: | | |
rm -f ~/.gradle/caches/modules-2/modules-2.lock | |
rm -f ~/.gradle/caches/modules-2/gc.properties | |