fix: 로그인 및 TOTP 인증 상태코드 수정 및 API 문서 비밀번호 정책 설명 추가 완료 #67
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: Build Spring Boot with Gradle | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Java and Gradlew | |
uses: ./.github/actions/setup-java-and-gradlew | |
with: | |
java-distribution: 'liberica' | |
java-version: '21' | |
java-package: 'jdk' | |
- name: Write Application Configuration | |
run: | | |
mkdir -p config | |
echo "${{ secrets.APPLICATION_YAML }}" | base64 --decode > config/application.yml | |
- name: Build with Gradle | |
run: ./gradlew assemble --info --parallel |