-
Notifications
You must be signed in to change notification settings - Fork 94
29 lines (28 loc) · 986 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: build
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Cache npm Repository
uses: actions/cache@v3.0.8
with:
path: ./node_modules
key: jetlinks-docs-repository
- name: Install 🔧
run: |
yarn install
yarn add vuepress -D
# yarn global add vuepress@next
yarn docs:build
docker build -t registry.cn-shenzhen.aliyuncs.com/jetlinks/jetlinks-docs .
- name: Login Docker Repo
run: echo "${{ secrets.ALIYUN_DOCKER_REPO_PWD }}" | docker login registry.cn-shenzhen.aliyuncs.com -u ${{ secrets.ALIYUN_DOCKER_REPO_USERNAME }} --password-stdin
- name: Push Docker
run: docker push registry.cn-shenzhen.aliyuncs.com/jetlinks/jetlinks-docs