feat: support contract address computing utils #83
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: dev-localization | |
on: | |
push: | |
branches: [ "dev" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Sync changes | |
run: | | |
git config --global user.email "[email protected]" && | |
git config --global user.name "localization bot" && | |
git checkout -b dev-zh-CN && | |
cp ./.readthedocs-zh-CN.yaml ./.readthedocs.yaml && | |
git add . && | |
git commit -m "doc: change .readthedocs.yaml to zh-CN version" && | |
git push origin dev-zh-CN -f |