refactor: 서버 재부팅 시 Docker 컨테이너 자동 시작 설정 추가 완료 #68
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: Build Spring Boot with Gradle | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Java and Gradlew | |
uses: ./.github/actions/setup-java-and-gradlew | |
with: | |
java-distribution: 'liberica' | |
java-version: '21' | |
java-package: 'jdk' | |
- name: Write Application Configuration | |
run: | | |
mkdir -p config | |
echo "${{ secrets.APPLICATION_YAML }}" | base64 --decode > config/application.yml | |
- name: Build with Gradle | |
run: ./gradlew assemble --info --parallel |