Skip to content

Commit

Permalink
fix: github actions yml 수정
Browse files Browse the repository at this point in the history
- yml 파일 위치 이동에 따른 코드 수정
  • Loading branch information
lee1684 committed May 20, 2024
1 parent 5e0d852 commit 1e176be
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
if: contains(github.ref, 'back-end')
run: |
# spring의 resources 경로로 이동
cd ./src/main/resources
cd ./back-end/src/main/resources
ls -al
touch ./application-aws.yml
touch ./back-end/application-aws.yml
# GitHub-Actions에서 설정한 값을 application-aws.yml 파일에 쓰기
echo "copy properties"
Expand All @@ -58,12 +58,12 @@ jobs:

# gradlew 파일 실행권한 설정
- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
run: chmod +x ./back-end/gradlew
shell: bash

# Gradle build (Test 제외)
- name: Build with Gradle
run: ./gradlew clean --stacktrace --info build
run: ./back-end/gradlew clean --stacktrace --info build
shell: bash

# AWS 인증 (IAM 사용자 Access Key, Secret Key 활용)
Expand Down

0 comments on commit 1e176be

Please sign in to comment.