Skip to content

Commit

Permalink
ci: add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hacxy committed Jul 23, 2024
1 parent 2505e73 commit ecaf690
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 1 deletion.
60 changes: 60 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: DeployService
on:
push: # 监听调用时机为push事件
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest # runs-on 指定job任务运行所需要的虚拟机环境(必填字段)
steps:
- name: 拉取代码 # 步骤名字
uses: actions/checkout@master # 使用 actions/checkout 库拉取最新源码

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: pnpm

# - name: 安装 Docker Buildx
# uses: docker/setup-buildx-action@v2
- name: 项目安装依赖
run: pnpm install --no-frozen-lockfile

- name: 项目打包构建
env:
NODE_OPTIONS: --max_old_space_size=4096
run: |
pnpm build
- name: 移动产物至到服务器
uses: appleboy/scp-action@master
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
password: ${{ secrets.SSH_PASSWORD }}
source: 'dist,prisma,package.json,pnpm-lock.yaml,ecosystem.config.js'
target: '/${{secrets.SSH_USERNAME}}/Projects/.cover-admin-service_temp/'
rm: true

- name: 执行远程脚本命令
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
password: ${{ secrets.SSH_PASSWORD }}
script: |
mkdir -p /${{secrets.SSH_USERNAME}}/Projects/cover-admin-service/
rm -rf /${{secrets.SSH_USERNAME}}/Projects/cover-admin-service/*
cp -rf /${{secrets.SSH_USERNAME}}/Projects/.cover-admin-service_temp/* /${{secrets.SSH_USERNAME}}/Projects/cover-admin-service/
cd /${{secrets.SSH_USERNAME}}/Projects/cover-admin-service/
echo "${{ secrets.PROD_ENV }}" > .env
pnpm install
pnpm db:pg
pm2 restart ./ecosystem.config.js
- run: echo "部署完成!"
2 changes: 1 addition & 1 deletion ecosystem.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
apps: [
{
name: 'wheat-admin-service',
name: 'cover-admin-service',
script: 'dist/main.js',
watch: '.'
}
Expand Down

0 comments on commit ecaf690

Please sign in to comment.