-
Notifications
You must be signed in to change notification settings - Fork 7
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
1 parent
fd9a0f2
commit c69b963
Showing
1 changed file
with
2 additions
and
2 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 |
---|---|---|
|
@@ -10,14 +10,14 @@ jobs: | |
runs-on: ubuntu-latest # 构建环境使用 ubuntu | ||
steps: | ||
- uses: actions/[email protected] # 将代码拉到虚拟机 | ||
name: 虚拟机代码clone | ||
name: 克隆代码 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: VUE构建 # 前端 | ||
run: | | ||
cd vue | ||
npm install | ||
npm install --legacy-peer-deps | ||
npm run build | ||
- name: Rust构建 # 后端 | ||
|