Skip to content

Merge pull request #1 from SunjooAI/#1/feature #14

Merge pull request #1 from SunjooAI/#1/feature

Merge pull request #1 from SunjooAI/#1/feature #14

Workflow file for this run

name: sentimentAnalysis CI/CD
on:
push:
branches: [ main ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Clear Gradle cache
run: rm -rf ~/.gradle/caches/
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build --no-daemon
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
run: |
docker build -t ${{ secrets.DOCKER_USERNAME }}/sunjoo:sentimentAnalysis .
docker push ${{ secrets.DOCKER_USERNAME }}/sunjoo:sentimentAnalysis
- name: SSH and Deploy
uses: appleboy/ssh-action@v0.1.5
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.KEY }}
port: ${{ secrets.PORT }}
script: |
docker pull ${{ secrets.DOCKER_USERNAME }}/sunjoo:sentimentAnalysis
docker stop sunjoo || true
docker rm sunjoo || true
docker run -d -p 8082:8082 --name sunjoo ${{ secrets.DOCKER_USERNAME }}/sunjoo:sentimentAnalysis