dev-redux Action
This commit is contained in:
parent
a5570ab2e9
commit
47b5922ea2
|
@ -0,0 +1,37 @@
|
|||
name: Continuous Integration #action名称
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- dev-redux
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout master
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
ref: master
|
||||
|
||||
- name: Setup node
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: "12.x"
|
||||
|
||||
- name: Build project
|
||||
run: yarn && yarn build
|
||||
env:
|
||||
CI: false
|
||||
|
||||
- name: Authenticate
|
||||
run: sudo chmod 775 ./build/
|
||||
|
||||
- name: Upload COS
|
||||
uses: ciaochaos/tencent-cos-action@master
|
||||
with:
|
||||
args: delete -r -f / && upload -r build/ /
|
||||
secret_id: ${{ secrets.SECRET_ID }}
|
||||
secret_key: ${{ secrets.SECRET_KEY }}
|
||||
bucket: ${{ secrets.BUCKET_DEV }}
|
||||
region: ap-shanghai
|
Loading…
Reference in New Issue