deploy
All checks were successful
Prod Deploy / Explore-Gitea-Actions (push) Successful in 26s

This commit is contained in:
Junhui Chen 2025-07-14 13:57:10 +08:00
parent 6076a8ad4c
commit c5991977bb
2 changed files with 20 additions and 2 deletions

View File

@ -25,7 +25,13 @@ jobs:
run: | run: |
echo "Building the Docker image..." echo "Building the Docker image..."
# tag_name=${{ gitea.ref_name }} # tag_name=${{ gitea.ref_name }}
tag_name=latest tag_name=0.5.0.1
docker build -t hub.fairclip.cn/memowake/memowake-front:${tag_name} . docker build -t hub.fairclip.cn/memowake/memowake-front:${tag_name} .
docker push hub.fairclip.cn/memowake/memowake-front:${tag_name} docker push hub.fairclip.cn/memowake/memowake-front:${tag_name}
echo "Docker image built successfully!" echo "Docker image built successfully!"
- name: Deploy
run: |
echo "Deploying the project..."
tag_name=0.5.0.1
bash ./scripts/prod_deploy.sh ${tag_name}
echo "Deploy successful!"

12
scripts/prod_deploy.sh Normal file
View File

@ -0,0 +1,12 @@
#!/bin/bash
set -x
TAG=${1:-latest}
CONTROLPANEL_HOST="101.132.185.243"
CONTROLPANEL_USER="ecs-user"
CONTROLPANEL_SSH_KEY="~/.ssh/id_ed25519"
# SSH到CONTROLPANEL_HOST执行以下命令
# helm install memowake-front . -n memowake
ssh ${CONTROLPANEL_USER}@${CONTROLPANEL_HOST} "cd /home/ecs-user/infra-deploy/memowake-front && helm upgrade memowake-front . -n memowake --set image.tag=${TAG}"