Skip to content

Commit

Permalink
Create serverCICD.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
capDoYeonLee authored Apr 4, 2024
1 parent 186ca5e commit 13e77a5
Showing 1 changed file with 75 additions and 0 deletions.
75 changes: 75 additions & 0 deletions .github/workflows/serverCICD.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# 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: Java CI with Gradle

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'

- name: Grant execute permission for gradlew
working-directory: ./be/error
run: chmod +x ./gradlew
shell: bash

- 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-
## gradle build
- name: Build with Gradle
working-directory: ./be/error
run: ./gradlew build -x test

- name: Docker build & push to dev
working-directory: ./be/error
if: contains(github.ref, 'main')
run: |
docker login -u ${{ secrets.DOCKER_ID }} -p ${{ secrets.DOCKER_PASSWORD }}
docker build -t ${{ secrets.DOCKER_REPO }}/econo-error .
docker push ${{ secrets.DOCKER_REPO }}/ecnv-error
- name: serve in ec2 used for script
uses: appleboy/ssh-action@master
id: deploy-dev
if: contains(github.ref, 'main')
with:
host: ${{ secrets.HOST_DEV_IP }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
port: 22
working-directory: ./be/
script: |
pwd && ll
cd econo-error/BE/error
sudo usermod -a -G docker $USER
docker pull ${{ secrets.DOCKER_REPO }}/econo-error
docker-compose up -d
docker image prune -f

0 comments on commit 13e77a5

Please sign in to comment.