[내 정보 수정 API] 성별을 수정 불가능하도록 API 변경 #36
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: CI for dev | |
on: | |
pull_request: | |
branches: [ "develop" ] | |
env: | |
ENV_FILE_NAME: env.properties | |
ENV_DIR: ./damaba/src/main/resources | |
jobs: | |
build: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Set environments | |
run: echo "${{secrets.DEV_ENV}}" > $ENV_DIR/$ENV_FILE_NAME | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1 | |
with: | |
arguments: build |