-
Notifications
You must be signed in to change notification settings - Fork 1
87 lines (68 loc) · 2.78 KB
/
production-cd.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: production-cd
on:
push:
branches: [ 'release' ]
permissions:
contents: read
jobs:
newrelic:
runs-on: ubuntu-latest
name: New Relic
steps:
# This step builds a var with the release tag value to use later
- name: Set Release Version from Tag
run: echo "RELEASE_VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
# This step creates a new Change Tracking Marker
- name: New Relic Application Deployment Marker
uses: newrelic/[email protected]
with:
apiKey: ${{ secrets.NEW_RELIC_API_KEY }}
guid: ${{ secrets.NEW_RELIC_DEPLOYMENT_ENTITY_GUID }}
version: "${{ env.RELEASE_VERSION }}"
user: "${{ github.actor }}"
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: Set up properties
run: |
cd src/main
mkdir resources
cd resources
touch application.properties
echo "${{ secrets.PROD_APPLICATION }}" > application.properties
cat application.properties
shell: bash
- name: Set up newrelic.yml
run: |
cd newrelic
touch newrelic.yml
echo "${{ secrets.PROD_NEW_RELIC_FILE }}" | base64 --decode > newrelic.yml
shell: bash
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build -x test -x ktlintMainSourceSetCheck
- name: Docker build
run: |
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
docker build --no-cache -t app .
docker tag app ${{ secrets.DOCKER_USERNAME }}/prod-phote:latest
docker push ${{ secrets.DOCKER_USERNAME }}/prod-phote:latest
- name: Deploy
uses: appleboy/[email protected]
with:
host: ${{ secrets.PROD_HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.PROD_PRIVATE_KEY }}
port: ${{ secrets.DEV_PORT }}
script: |
docker pull ${{ secrets.DOCKER_USERNAME }}/prod-phote:latest
sudo chmod 777 ./deploy.sh
./deploy.sh
docker image prune -f