feat: #137 질문 좋아요/취소 API 구현 및 질문 조회 API에 적용 #242
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 | |
on: | |
push: | |
tags-ignore: | |
- 'v**' | |
branches-ignore: | |
- 'release-**' | |
- 'master' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:latest | |
env: | |
POSTGRES_USER: ${{ secrets.TEST_POSTGRES_USER }} | |
POSTGRES_PASSWORD: ${{ secrets.TEST_POSTGRES_PASSWORD }} | |
POSTGRES_DB: ${{ secrets.TEST_POSTGRES_DB }} | |
ports: | |
- 35432:5432 | |
redis: | |
image: redis:latest | |
ports: | |
- 36379:6379 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.TOKEN_GITHUB }} | |
submodules: recursive | |
- name: Setup Java JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'corretto' | |
java-version: 17 | |
- name: Git Submodule Update | |
run: | | |
git submodule update --remote --recursive | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./gradlew | |
shell: bash | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Build with Gradle | |
id: buildWithGradle | |
run: ./gradlew clean build | |
shell: bash | |
- name: Upload Report Artifact When Build Failed | |
if: ${{ failure() && steps.buildWithGradle.conclusion == 'failure' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: report-artifact | |
path: ./build/reports | |
compression-level: 9 | |
retention-days: 1 | |
overwrite: true | |
- name: Move *.jar File | |
run: | | |
mkdir content | |
mv ./build/libs/*.jar ./content/ | |
- name: Extract .jar File | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jar-file | |
path: | | |
./content/*.jar | |
compression-level: 9 | |
retention-days: 1 | |
overwrite: true |