All checks were successful
Server CI/CD / deploy (push) Successful in 50s
- 멀티 스테이지 Dockerfile 추가 (Go 빌드 + Alpine 실행) - Gitea Actions SSH 배포 워크플로우 추가 - CORS를 https://a301.tolelom.xyz 로 제한 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
29 lines
824 B
YAML
29 lines
824 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-server
|
|
git clone https://tolelom:${{ secrets.GIT_TOKEN }}@git.tolelom.xyz/A301/a301_server.git a301-server
|
|
cd a301-server
|
|
docker build --no-cache -t a301-server:latest .
|
|
cd ~/server
|
|
docker compose up -d --force-recreate a301-server
|
|
rm -rf /tmp/a301-server
|