-
Notifications
You must be signed in to change notification settings - Fork 737
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
0 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1 @@ | ||
name: Build CI VUE3 | ||
|
||
on: | ||
push: | ||
branches: [ vue3_dev ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: install | ||
run: yarn | ||
|
||
- name: Build | ||
run: yarn build | ||
|
||
- name: ClearFile | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.SSH_HOST }} # 下面三个配置与上一步类似 | ||
username: ${{ secrets.SSH_USERNAME }} | ||
key: ${{ secrets.DEPLOY_KEY }} | ||
# 重启的脚本,根据自身情况做相应改动,一般要做的是migrate数据库以及重启服务器 | ||
script: | | ||
sudo rm -rf /www/vue3/* | ||
- name: Deploy to Server # 第四步,rsync推送文件 | ||
uses: AEnterprise/[email protected] # 使用别人包装好的步骤镜像 | ||
env: | ||
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }} # 引用配置,SSH私钥 | ||
ARGS: -avz --delete --exclude='*.pyc' # rsync参数,排除.pyc文件 | ||
SERVER_PORT: '22' # SSH端口 | ||
FOLDER: ./dist/* # 要推送的文件夹,路径相对于代码仓库的根目录 | ||
SERVER_IP: ${{ secrets.SSH_HOST }} # 引用配置,服务器的host名(IP或者域名domain.com) | ||
USERNAME: ${{ secrets.SSH_USERNAME }} # 引用配置,服务器登录名 | ||
SERVER_DESTINATION: /www/vue3/ # 部署到目标文件夹 |