Translate ja/character_profile.json in zh_CN #24305
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: Upload to COS | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install coscmd | |
run: sudo pip install coscmd | |
- name: Configure coscmd | |
env: | |
SECRET_ID: ${{ secrets.SecretId }} | |
SECRET_KEY: ${{ secrets.SecretKey }} | |
BUCKET: sekai-json-1258184166 | |
REGION: ap-shanghai | |
run: coscmd config -a $SECRET_ID -s $SECRET_KEY -b $BUCKET -r $REGION | |
- name: Upload | |
run: coscmd upload -rs --delete -f ./ locales --ignore "./.git/*,./LICENSE,./README.md,./.github/*" |