[Feat] #276 - 디스코드 회원가입 알림에 누적회원수 추가 #37
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: 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 |