Pull all branchs for CI mike

pull/103/head
JulioV 2020-11-09 14:12:35 -05:00
parent 7f1720e2e1
commit f450120b51
1 changed files with 4 additions and 2 deletions

View File

@ -8,14 +8,16 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2 - uses: actions/setup-python@v2
with: with:
python-version: 3.x python-version: 3.x
- run: pip install git+https://${GH_TOKEN}@github.com/carissalow/mkdocs-material-insiders.git - run: pip install git+https://${GH_TOKEN}@github.com/carissalow/mkdocs-material-insiders.git
- run: pip install mike - run: pip install mike
- run: | - run: |
git config --global user.name 'GH Actions' git config user.name github-actions
git config --global user.email 'ghactions@moshi.com' git config user.email github-actions@github.com
mike deploy --push --update-aliases 0.1 latest mike deploy --push --update-aliases 0.1 latest
env: env:
GH_TOKEN: ${{ secrets.GH_TOKEN }} GH_TOKEN: ${{ secrets.GH_TOKEN }}