All checks were successful
Server CI/CD / deploy (push) Successful in 1m28s
force-recreate만으로는 크래시 루프 상태에서 교체가 안 되는 문제 해결. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
32 lines
1010 B
YAML
32 lines
1010 B
YAML
name: Server CI/CD
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 서버에 배포
|
|
uses: appleboy/ssh-action@v1
|
|
with:
|
|
host: ${{ secrets.SERVER_HOST }}
|
|
username: ${{ secrets.SERVER_USER }}
|
|
key: ${{ secrets.SSH_PRIVATE_KEY }}
|
|
port: 22
|
|
script: |
|
|
export PATH=$PATH:/usr/local/bin:/opt/homebrew/bin:$HOME/.docker/bin
|
|
cd /tmp
|
|
rm -rf a301-build
|
|
mkdir a301-build && cd a301-build
|
|
git clone https://tolelom:${{ secrets.GIT_TOKEN }}@git.tolelom.xyz/A301/a301_server.git a301_server
|
|
git clone https://github.com/tolelom/tolchain.git tolchain
|
|
docker build --no-cache -t a301-server:latest -f a301_server/Dockerfile .
|
|
cd ~/server
|
|
docker compose stop a301-server
|
|
docker compose rm -f a301-server
|
|
docker compose up -d a301-server
|
|
rm -rf /tmp/a301-build
|