Compare commits

...

8 Commits

Author SHA1 Message Date
c5991977bb deploy
All checks were successful
Prod Deploy / Explore-Gitea-Actions (push) Successful in 26s
2025-07-14 13:57:10 +08:00
6076a8ad4c f
All checks were successful
Prod Deploy / Explore-Gitea-Actions (push) Successful in 1m9s
2025-07-14 13:09:08 +08:00
023ada63cd f
All checks were successful
Prod Deploy / Explore-Gitea-Actions (push) Successful in 24s
2025-07-14 13:07:52 +08:00
b8049246de f
Some checks failed
Prod Deploy / Explore-Gitea-Actions (push) Failing after 8s
2025-07-14 13:07:25 +08:00
1cdb8c3e10 f 2025-07-14 13:07:18 +08:00
6a9b5c2f6a tag
All checks were successful
Prod Deploy / Explore-Gitea-Actions (push) Successful in 25s
2025-07-14 13:06:21 +08:00
720bd59a83 tag
Some checks failed
Prod Deploy / Explore-Gitea-Actions (push) Failing after 9s
2025-07-14 13:04:54 +08:00
e68a102492 chore: prod deploy
Some checks failed
Prod Deploy / Explore-Gitea-Actions (push) Failing after 10s
2025-07-14 13:02:43 +08:00
2 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,37 @@
name: Prod Deploy
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on:
push:
tags:
- 'releases/*'
branches:
- 'releases/*'
jobs:
Explore-Gitea-Actions:
runs-on: self_hosted
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: https://git.fairclip.cn/mirrors/actions-checkout@v4
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- name: Build Docker Image
run: |
echo "Building the Docker image..."
# tag_name=${{ gitea.ref_name }}
tag_name=0.5.0.1
docker build -t hub.fairclip.cn/memowake/memowake-front:${tag_name} .
docker push hub.fairclip.cn/memowake/memowake-front:${tag_name}
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}"