-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* CHORE: Create ohhanahana-ci.yml * fix: submodule token 추가 * fix: token명 변경 * FIX: token 필드명 수정 * FIX: gradlew 권한 부여 * REFACTFIX: rvice-key ì 서브모듈 적용 * FIX: Spring-profile-active 필드 추가 * FIX: 오류 - 제거 * Update ohhanahana-ci.yml * Update ohhanahana-ci.yml * Update ohhanahana-ci.yml * Update ohhanahana-ci.yml * Update ohhanahana-ci.yml * Update ohhanahana-ci.yml * f * fix: update * remove application.yml
- Loading branch information
1 parent
6c0567d
commit aec418b
Showing
3 changed files
with
54 additions
and
2 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,49 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle | ||
|
||
name: Ohhanahana CI Pipeline | ||
|
||
on: | ||
push: | ||
branches: [ "develop" ] | ||
pull_request: | ||
branches: [ "develop" ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: checkout submodule | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
token: ${{ secrets.ACTIONS_TOKEN }} | ||
|
||
- name: Update submodule | ||
run: | | ||
git submodule update --remote --recursive | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x ./gradlew | ||
|
||
- name: Build with Gradle | ||
run: ./gradlew clean build -x test | ||
env: | ||
SPRING_PROFILES_ACTIVE: main | ||
|
Submodule config
updated
from f41b46 to 512b98
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