简化 oeip 类型,支持 lrp 类型被 nat 复用 (#111) #410
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: ci | |
on: | |
push: | |
branches: | |
- main | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- run: pip install -r docs/requirements.txt | |
- run: | | |
git config --global user.name "ci-bot" | |
git config --global user.email "[email protected]" | |
git fetch origin gh-pages | |
mike deploy --push -f -u v1.13.x dev -t "v1.13.x (dev)" | |
mike list |