[FEAT] 분리 및 이관 User 도메인 데이터 생성 #229
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: ci | |
on: | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./gradlew | |
shell: bash | |
- name: Create application.yml | |
run: | | |
pwd | |
cd ./operation-api/src/main/resources | |
touch ./application-dev.yml | |
echo "${{ secrets.APPLICATION_DEV }}" >> ./application-dev.yml | |
cat ./application-dev.yml | |
- name: Build with Gradle | |
run: ./gradlew build | |
shell: bash |