-
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.
Update and rename deploy.yml to gradle.yml
- Loading branch information
1 parent
740675c
commit 6c4688c
Showing
2 changed files
with
58 additions
and
40 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,58 @@ | ||
name: Java CI with Gradle | ||
|
||
on: | ||
push: | ||
branches: [ "develop" ] | ||
pull_request: | ||
branches: [ "develop" ] | ||
|
||
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: make application-prod.yml | ||
run: | | ||
cd ./src/main/resources | ||
touch ./application-prod.yml | ||
echo "${{ secrets.APPLICATION_PROD }}" > ./application-prod.yml | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Build with Gradle | ||
run: ./gradlew build -x test | ||
|
||
- name: Docker build | ||
run: | | ||
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} | ||
docker build -t app . | ||
docker tag app ${{ secrets.DOCKER_USERNAME }}/sejongmate:latest | ||
docker push ${{ secrets.DOCKER_USERNAME }}/sejongmate:latest | ||
- name: Deploy | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.HOST }} # EC2 인스턴스 퍼블릭 DNS | ||
username: ec2-user | ||
key: ${{ secrets.PRIVATE_KEY }} # pem 키 | ||
# 도커 작업 | ||
script: | | ||
docker pull ${{ secrets.DOCKER_USERNAME }}/sejongmate:latest | ||
docker stop $(docker ps -a -q) | ||
docker run -d --log-driver=syslog -p 8080:8080 ${{ secrets.DOCKER_USERNAME }}/sejongmate:latest | ||
docker rm $(docker ps --filter 'status=exited' -a -q) | ||
docker image prune -a -f |