[Fix] #286 - 소셜 쿼리 오류 수정 및 닉네임 정규표현식 수정 #45
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: dev-CI | |
on: | |
pull_request: | |
branches: [ "develop" ] | |
jobs: | |
dev-build-TEST: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'corretto' | |
java-version: '17' | |
- name: application.yml 작성 | |
run: | | |
cd moonshot-api/src/main/resources | |
echo "${{ secrets.DEV-APPLICATION }}" > ./application-dev.yml | |
echo "${{ secrets.DATA }}" > ./data.sql | |
- name: build | |
run: | | |
chmod +x gradlew | |
./gradlew moonshot-api:build -x test | |
shell: bash |