Skip to content

Commit

Permalink
fix: try more steps
Browse files Browse the repository at this point in the history
  • Loading branch information
bbb169 committed Oct 16, 2023
1 parent c164b88 commit 81a8457
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,13 @@ jobs:
ssh root@${{secrets.REMOTE_HOST}} "
cd ${{secrets.REMOTE_SERVER_DIR}};
ls -a;
pnpm install;
pnpm run ts-build;
"
- name: 安装依赖
run: pnpm install

- name: 编译打包
run: pnpm run build

- name: 删除 id_rsa
run: rm -rf ~/.ssh/id_rsa

0 comments on commit 81a8457

Please sign in to comment.