Skip to content

fix: indent 미적용 문제 수정 #6

fix: indent 미적용 문제 수정

fix: indent 미적용 문제 수정 #6

Workflow file for this run

name: Deploy MkDocs to GitHub Pages
on:
push:
branches:
- mkdocs
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs-material
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}