Merge branch 'swisskyrepo:master' into master #12
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: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
# Checks-out submodules | |
- uses: actions/checkout@v2 | |
- name: Checkout submodules | |
shell: bash | |
run: | | |
git config --global user.email "no-reply@github.com" | |
git config --global user.name "Swk" | |
git config --global pull.rebase false | |
git submodule add https://github.com/swisskyrepo/PayloadsAllTheThings/ docs | |
mv docs/.github/overrides . | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- run: pip install mkdocs-material | |
- run: pip install mkdocs-git-revision-date-localized-plugin | |
- run: pip install mkdocs-git-committers-plugin | |
- run: pip install mkdocs-material[imaging] | |
- run: mkdocs gh-deploy --force | |