[REFACTOR] 커스텀 도안 신청, 일반 상품 구매 시 디스코드 메시지 형식 수정 #40
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: Tattour-Server-Dev CI | |
on: | |
pull_request: | |
branches: [ "dev" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: make application.properties | |
run: | | |
#mkdir ./server/src/main/resources | |
cd ./server/src/main/resources | |
touch ./application.yaml | |
echo "${{ secrets.TATTOUR_DEV_APPLICATION }}" >> ./application.yaml | |
cat ./application.yaml | |
shell: bash | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./server/gradlew | |
- name: Build with Gradle | |
run: | | |
cd ./server | |
./gradlew build -x test |