29 lines
		
	
	
		
			646 B
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			646 B
		
	
	
	
		
			YAML
		
	
	
	
| name: deploy to aliyun oss
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches: [ main, master ]
 | |
| 
 | |
| jobs:
 | |
|   build:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|     - uses: actions/checkout@v1
 | |
|     - name: setup node
 | |
|       uses: actions/setup-node@v1
 | |
|       with:
 | |
|         node-version: 16
 | |
| 
 | |
|     - name: build
 | |
|       uses: mattnotmitt/doxygen-action@v1.9.4
 | |
| 
 | |
|     - name: setup aliyun oss
 | |
|       uses: manyuanrong/setup-ossutil@master
 | |
|       with:
 | |
|         endpoint: oss-cn-chengdu.aliyuncs.com
 | |
|         access-key-id: ${{ secrets.OSS_KEY_ID }}
 | |
|         access-key-secret: ${{ secrets.OSS_KEY_SECRET }}
 | |
| 
 | |
|     - name: upload files
 | |
|       run: ossutil cp -rf ./docs/html oss://kiwano-docs-website/
 |