-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (57 loc) · 1.82 KB
/
publish-docker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Push Docker Image
on:
pull_request:
types: [ opened, reopened, synchronize ]
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Add application-dev.yml file
run: |
cd ./src/main/resources
touch ./application-dev.yml
echo "${{secrets.APPLICATION_DEV}}" > ./application-dev.yml
shell: bash
- name: Add application-test.yml file
run: |
cd ./src/test/resources
touch ./application-test.yml
echo "${{secrets.APPLICATION_TEST}}" > ./application-test.yml
shell: bash
- name: Build with Gradle
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
with:
arguments: clean build
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{secrets.DOCKER_USERNAME}}
password: ${{secrets.DOCKER_PASSWORD}}
- name: Build and Push
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile
push: true
tags: ${{secrets.DOCKER_REPO}}:latest
- name: Executing Remote SSH commands Using Password
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ubuntu
key: ${{ secrets.KEY }}
script: |
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
docker rmi -f $(docker images -q)
sudo docker pull ${{ secrets.DOCKER_REPO }}
docker run -itd -p 8080:8080 ${{ secrets.DOCKER_REPO }}