-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (57 loc) · 1.83 KB
/
CD-develop.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
name: CD-develop
on:
push:
branches: [ "dev" ]
jobs:
deploy-ci-develop:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
- name: Create application.yml and application-prod.yml
run: |
mkdir src/main/resources
cd src/main/resources
echo "${{ secrets.APPLICATION }}" > ./application.yml
echo "${{ secrets.APPLICATION_PROD_DEVELOP }}" > ./application-prod.yml
- name: Create apple login key file
env:
API_KEY: ${{ secrets.APPSTORE_API_KEY_ID }}
run: |
mkdir -p src/main/resources/static/apple
echo "${{ secrets.APPLE_AUTH_KEY }}" > src/main/resources/static/apple/AuthKey_$API_KEY.p8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
shell: bash
- name: Build with Gradle
run: ./gradlew build -x test
shell: bash
- name: Docker build Setting
uses: docker/[email protected]
- name: Docker hub Login
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_ACCESSTOKEN }}
- name: Docker image Build and Push
run: |
docker build --platform linux/amd64 -t websoso/websoso-image .
docker push websoso/websoso-image
deploy-cd-develop:
needs: deploy-ci-develop
runs-on: ubuntu-22.04
steps:
- name: Run Docker container
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.DEVELOP_SERVER_IP }}
username: ${{ secrets.DEVELOP_SERVER_USER }}
key: ${{ secrets.DEVELOP_SERVER_KEY }}
script: |
cd ~
./deploy.sh