From 5848f95d232d3b5a14f9fd45b9530cd3639b7831 Mon Sep 17 00:00:00 2001 From: Gam13 Date: Sun, 3 Nov 2024 19:51:41 -0300 Subject: [PATCH] configurando mkdocs --- .github/workflows/deploy.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..aad5b734 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,24 @@ +name: Deploy MkDocs site to GitHub Pages +on: + push: + branches: + - main # Branch para deploy +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Check out the repository + uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: '3.x' + + - name: Install MkDocs and dependencies + run: | + pip install mkdocs mkdocs-material + + - name: Deploy to GitHub Pages + run: | + mkdocs gh-deploy --force