Skip to content

fix: upgrade com.fasterxml.jackson.core:jackson-databind from 2.15.3 … #79

fix: upgrade com.fasterxml.jackson.core:jackson-databind from 2.15.3 …

fix: upgrade com.fasterxml.jackson.core:jackson-databind from 2.15.3 … #79

Workflow file for this run

name: publish mkdocs
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: "recursive"
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: "3.7"
architecture: "x64"
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip # install pip
python3 -m pip install mkdocs # install mkdocs
- name: Build html
run: mkdocs build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./html