diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7ad715a1..b347acd3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,14 +8,16 @@ jobs: 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 git+https://${GH_TOKEN}@github.com/carissalow/mkdocs-material-insiders.git - run: pip install mike - run: | - git config --global user.name 'GH Actions' - git config --global user.email 'ghactions@moshi.com' + git config user.name github-actions + git config user.email github-actions@github.com mike deploy --push --update-aliases 0.1 latest env: GH_TOKEN: ${{ secrets.GH_TOKEN }}