-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#107 [feat] : 테스트 서버용 CICD 스크립트를 추가한다
- Loading branch information
Showing
1 changed file
with
61 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,61 @@ | ||
name: Onetime TEST CI/CD with Gradle | ||
|
||
on: | ||
push: | ||
branches: [ "test" ] | ||
pull_request: | ||
branches: [ "test" ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: ⏱️Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: ⏱️Gradle Caching - 빌드 시간 향상 | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
- name: ⏱️gradle build를 위한 권한을 부여합니다. | ||
run: chmod +x ./gradlew | ||
|
||
- name: ⏱️gradle build 중입니다. | ||
run: ./gradlew build -x test | ||
|
||
- name: ⏱️Docker Hub에 로그인합니다. | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
|
||
- name: ⏱️Docker image build 후 Docker hub에 push합니다. | ||
run: | | ||
docker build -f Dockerfile -t ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKER_IMAGE_NAME }} . | ||
docker push ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKER_IMAGE_NAME }} | ||
- name: ⏱️Docker hub에서 pull 후 deploy합니다. | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.GCP_TEST_SERVER_HOST }} | ||
username: ${{ secrets.GCP_TEST_SERVER_USERNAME }} | ||
key: ${{ secrets.GCP_SSH_KEY }} | ||
script: | | ||
sudo chmod 777 ./deploy.sh | ||
./deploy.sh | ||
sudo docker image prune -f |