-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: Github Actions, MVP branch에 커밋시 자동 테스트 진행
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: CI FOR MVP | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
- mvp/apply | ||
- mvp/member | ||
- mvp/career | ||
- mvp/portfolio | ||
|
||
|
||
jobs: | ||
CI: | ||
name: Continuous Integration | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0 | ||
|
||
- name: Get short SHA | ||
id: slug | ||
run: echo "sha7=$(echo ${GITHUB_SHA} | cut -c1-7)" >> $GITHUB_OUTPUT | ||
|
||
- name: Generate application.properties | ||
run: | | ||
touch ./src/main/resources/application.properties | ||
echo ${{ secrets.PROPERTIES }} >> ./src/main/resources/application.properties | ||
echo commit.hash=${{ steps.slug.outputs.sha7 }} >> ./src/main/resources/application.properties | ||
- name: Build with Gradle Wrapper | ||
run: ./gradlew build |