hotfix - LocalDate가 배열로 오는 문제 해결 main hot fix #4
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: 🏭 APPLICATION-BUILD! | |
on: | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'corretto' | |
- name: Copy application.yml | |
run: | | |
mkdir ./src/main/resources | |
touch ./src/main/resources/application.yml | |
echo "${{ secrets.APPLICATION_PROD_YML }}" >> ./src/main/resources/application.yml | |
cat ./src/main/resources/application.yml | |
shell: bash | |
- name: Grant execute permission for gradlew | |
run: | | |
chmod +x gradlew | |
- name: Build with Gradle | |
run: | | |
./gradlew clean build |