-
Notifications
You must be signed in to change notification settings - Fork 3.8k
51 lines (43 loc) · 1.42 KB
/
deploy-1000h-aliyun.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Deploy 1000h website(aliyun)
env:
OSS_ENDPOINT: oss-cn-beijing.aliyuncs.com
on:
workflow_dispatch:
push:
branches:
- main
paths:
- "1000-hours/**"
pull_request:
branches:
- main
paths:
- "1000-hours/**"
jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy
steps:
# checkout the code
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: "**/node_modules"
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Setup node env
uses: actions/setup-node@master
with:
node-version: "20"
- name: Install dependencies
run: yarn install
- name: Set Base Path
run: sed -i 's/defineConfig({/defineConfig({"base":"\/1000-hours\/",/g' 1000-hours/.vitepress/config.mts
- name: Build
run: yarn docs:build
- uses: manyuanrong/[email protected]
with:
endpoint: ${{ env.OSS_ENDPOINT }}
access-key-id: ${{ secrets.GLOBAL_OSS_ACCESS_KEY_ID }}
access-key-secret: ${{ secrets.GLOBAL_OSS_ACCESS_KEY_SECRET }}
- run: ossutil cp -r -u -f 1000-hours/.vitepress/dist ${{ secrets.ALIYUN_OSS_PRESS_URL }}/1000-hours/ --include "*" -e ${{ env.OSS_ENDPOINT }}
- run: ossutil set-meta ${{ secrets.ALIYUN_OSS_PRESS_URL }}/1000-hours/ Cache-Control:no-cache --include "*.html" -r -f --update -e ${{ env.OSS_ENDPOINT }}