Skip to content

[πŸ”₯!hotfix] ν™ˆν™”λ©΄ > λ‚˜μ—κ²Œ λ”± λ§žλŠ” 곡고 : 데이터 ν˜•μ‹ 였λ₯˜ μˆ˜μ • #31

[πŸ”₯!hotfix] ν™ˆν™”λ©΄ > λ‚˜μ—κ²Œ λ”± λ§žλŠ” 곡고 : 데이터 ν˜•μ‹ 였λ₯˜ μˆ˜μ •

[πŸ”₯!hotfix] ν™ˆν™”λ©΄ > λ‚˜μ—κ²Œ λ”± λ§žλŠ” 곡고 : 데이터 ν˜•μ‹ 였λ₯˜ μˆ˜μ • #31

name: DOCKER-CD-STAGING
on:
push:
branches: [ "staging" ]
jobs:
ci:
# Using Environment - Staging ν™˜κ²½ μ‚¬μš©
# environment: staging..
runs-on: ubuntu-24.04
env:
working-directory: .
# Checkout - 가상 머신에 체크아웃
steps:
- name: 체크아웃
uses: actions/checkout@v3
# JDK setting - JDK 21 μ„€μ •
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
# Gradle caching - λΉŒλ“œ μ‹œκ°„ ν–₯상
- name: Gradle Caching
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
# create .yml - yml 파일 생성
- name: application.yml 생성
run: |
mkdir -p ./src/main/resources && cd $_
touch ./application.yml
echo "${{ secrets.YML }}" > ./application.yml
cat ./application.yml
working-directory: ${{ env.working-directory }}
- name: application-staging.yml 생성
run: |
cd ./src/main/resources
touch ./application-staging.yml
echo "${{ secrets.YML_STAGING }}" > ./application-staging.yml
working-directory: ${{ env.working-directory }}
# Gradle build - ν…ŒμŠ€νŠΈ 없이 gradle λΉŒλ“œ
- name: λΉŒλ“œ
run: |
chmod +x gradlew
./gradlew build -x test
working-directory: ${{ env.working-directory }}
shell: bash
- name: docker 둜그인
uses: docker/[email protected]
- name: login docker hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_LOGIN_USERNAME }}
password: ${{ secrets.DOCKER_LOGIN_ACCESSTOKEN }}
- name: docker image λΉŒλ“œ 및 ν‘Έμ‹œ
run: |
docker build -f Dockerfile-staging --platform linux/amd64 -t terningpoint/terning-staging .
docker push terningpoint/terning-staging
working-directory: ${{ env.working-directory }}
cd:
needs: ci
runs-on: ubuntu-24.04
steps:
- name: Debugging - Echo Host
run: echo "${{ secrets.STAGING_SERVER_IP }}"
- name: docker μ»¨ν…Œμ΄λ„ˆ μ‹€ν–‰
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.STAGING_SERVER_IP }}
username: ${{ secrets.STAGING_SERVER_USER }}
key: ${{ secrets.STAGING_SERVER_KEY }}
script: |
cd ~
./deploy-staging.sh