We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5d6b5c commit 3c5cc40Copy full SHA for 3c5cc40
.github/workflows/main.yml
@@ -6,24 +6,16 @@ on:
6
7
jobs:
8
build-and-deploy:
9
- runs-on: ubuntu-latest
10
- strategy:
11
- matrix:
12
- node-version: [12.x]
13
steps:
14
15
# 下载源码
16
- name: Checkout
17
- uses: actions/checkout@v2
18
- with:
19
- path: nuxt
+ uses: actions/checkout@master
20
21
# 打包构建
22
- name: Build
23
- uses: actions/setup-node@v1
24
25
- node-version: ${{ matrix.node-version }}
26
- - run: npm run install
+ uses: actions/setup-node@master
+ - run: npm install
27
- run: npm run build
28
- run: tar -zcvf release.tgz .nuxt server nuxt.config.js package.json
29
0 commit comments