[Fix] #50 - TokenResponse 수정 및 만료시간 변경 / Log 생성 관련 Exception 추가 #44
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 | |
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: | |
distribution: 'corretto' | |
java-version: '17' | |
- name: application.yaml 작성 | |
run: | | |
cd src/main/resources | |
echo "${{ secrets.APPLICATION }}" > ./application-deploy.yaml | |
- name: build | |
run: | | |
chmod +x gradlew | |
./gradlew build -x test | |
shell: bash |