Update registry in yarn.lock #140
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration Dev #action名称 | |
on: | |
push: | |
branches: | |
- master | |
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/ && ls | |
- 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 }} | |
region: ap-shanghai |