We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42c8fe0 commit 3fe486fCopy full SHA for 3fe486f
2 files changed
.github/workflows/egg.yml
@@ -1,12 +1,19 @@
1
on: push
2
3
jobs:
4
- job1:
+ npm-build:
5
runs-on: ubuntu-latest
6
steps:
7
- - run: pwd
8
- - run: ls
9
- job2:
10
- runs-on: windows-latest
11
- steps:
12
- - run: node --version
+ - name: 读取仓库内容
+ uses: actions/checkout@v4
+
+ - name: 安装依赖和项目打包
+ run: |
+ npm install
13
+ npm run build
14
15
+ - name: 部署
16
+ uses: jamesives/github-pages-deploy-action@v4
17
+ with:
18
+ branch: gh-pags
19
+ folder: build
1.main
0 commit comments