Junhui Chen 4913e96586
All checks were successful
Dev Deploy / Explore-Gitea-Actions (push) Successful in 24s
Prod Deploy / Explore-Gitea-Actions (push) Successful in 31s
feat: 接后端线上api
2025-07-14 21:02:10 +08:00

36 lines
1.5 KiB
YAML

name: Prod Deploy
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on:
push:
tags:
- '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=$(echo "${{ gitea.ref_name }}" | tr '/' '-')
docker build -t hub.fairclip.cn/memowake/memowake-front:${tag_name} -f dockerfiles/prod.Dockerfile .
docker push hub.fairclip.cn/memowake/memowake-front:${tag_name}
echo "Docker image built successfully!"
- name: Deploy
run: |
echo "Deploying the project..."
tag_name=${{ gitea.ref_name }}
tag_name=$(echo "${{ gitea.ref_name }}" | tr '/' '-')
bash ./scripts/prod_deploy.sh ${tag_name}
echo "Deploy successful!"