-
Notifications
You must be signed in to change notification settings - Fork 63
31 lines (30 loc) · 1.03 KB
/
deploy-oss.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
name: higress.io deploy on oss
on:
push:
branches:
- main
workflow_dispatch: ~
#This schedule only takes effect in the default branch
jobs:
Build-Deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.19.x ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: |
npm install && npm run build
- name: Install Aliyun CLI
run: |
curl -O https://aliyuncli.alicdn.com/aliyun-cli-linux-latest-amd64.tgz
tar -xzf aliyun-cli-linux-latest-amd64.tgz
chmod +x aliyun
./aliyun version
- name: Sync to OSS
run: ./aliyun oss cp ./dist oss://higress-website-cn-hongkong/ --meta Cache-Control:"max-age=3600" -r -f -e oss-cn-hongkong.aliyuncs.com --access-key-id ${{ secrets.ACCESS_KEYID }} --access-key-secret ${{ secrets.ACCESS_KEYSECRET }} --region cn-hongkong