Skip to content

Commit

Permalink
Create gradle.yml for ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
12OneTwo12 authored Apr 8, 2024
1 parent ec04d78 commit 77c59bf
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# 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/CD with Gradle

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

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: Change wrapper permissions
run: chmod +x ./gradlew

- name: Build with Gradle
run: ./gradlew build

- name: web docker login
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
- name: web docker build
run: docker build --platform amd64 --build-arg DEPENDENCY=build/dependency -t ${{secrets.DOCKER_USERNAME}}/my-fit .
- name: web docker tag
run: docker tag ${{secrets.DOCKER_USERNAME}}/my-fit ${{secrets.DOCKER_USERNAME}}/my-fit:latest
- name: web docker push
run: docker push ${{secrets.DOCKER_USERNAME}}/my-fit:latest

- name: executing remote ssh commands using password
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ubuntu
key: ${{ secrets.KEY }}
port: 22
script: |
docker stop my-fit
docker rm my-fit
docker pull ${{secrets.DOCKER_USERNAME}}/my-fit:latest
docker run --name my-fit -d -p 8080:8080 -v /etc/localtime:/etc/localtime:ro -e TZ=Asia/Seoul ${{secrets.DOCKER_USERNAME}}/my-fit:latest

0 comments on commit 77c59bf

Please sign in to comment.