Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gradlew 실행권한 부여하도록 수정 테스트 #161

Merged
merged 15 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/swagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v3
with:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_S3_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_S3_SECRET_ACCESS_KEY }}
AWS_REGION: 'ap-northeast-2' # 리전 정보
aws-access-key-id: ${{ secrets.AWS_S3_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_S3_SECRET_ACCESS_KEY }}
aws-region: 'ap-northeast-2'

- name: Download files from S3
run: |
Expand All @@ -34,6 +34,10 @@ jobs:
echo "Download Files"
ls -la ./merged-api-spec

# Gradle wrapper 파일 실행 권한주기
- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Generate Swagger Document
run: |
./gradlew openapi3
Expand Down
1 change: 1 addition & 0 deletions common/src/main/java/com/watermelon/server/S3Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,5 @@ public AmazonS3 amazonS3() {
.withRegion(region)
.build();
}

}
Loading