Skip to content

Commit

Permalink
move: make yml after build
Browse files Browse the repository at this point in the history
  • Loading branch information
Seokyeong237 committed Jan 21, 2024
1 parent 65f3f9f commit 409f2f0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ jobs:
java-version: '17'
distribution: 'temurin'

# 빌드 권한 부여
- name: Grant execute permission for gradlew
run: chmod +x gradlew

# 빌드
- name: Build with Gradle
run: ./gradlew clean build -x test

# 환경 변수 설정
- name: Set up Environment
working-directory: ./src/main
Expand All @@ -31,14 +39,6 @@ jobs:
echo "${{ secrets.APPLICATION_YML }}" | base64 --decode | tee .application.yml
cat .application.yml
# 빌드 권한 부여
- name: Grant execute permission for gradlew
run: chmod +x gradlew

# 빌드
- name: Build with Gradle
run: ./gradlew clean build -x test

# AWS 자격 증명
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
Expand Down

0 comments on commit 409f2f0

Please sign in to comment.