fix : 최근 인기있는 영상 정렬을 조회수 기반으로 변경 #92
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: Java CI | |
on: | |
pull_request: | |
branches: [ "main"] | |
jobs: | |
build-docker-image: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Grant Execute Permission For Gradlew | |
run: | | |
cd kobaco | |
cd kobaco | |
chmod +x gradlew | |
- name: Build With Gradle | |
run: | | |
cd kobaco | |
cd kobaco | |
./gradlew build |