Skip to content

Commit

Permalink
adiciona flow pages
Browse files Browse the repository at this point in the history
  • Loading branch information
OscarDeBrito committed Apr 1, 2024
1 parent fe22cdf commit 04ef98e
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/actionsflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Deploy MkDocs to GitHub Pages

on:
push:
branches:
- pages

permissions:
contents: write

jobs:

deploy:
runs-on: ubuntu-latest

steps:

- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: actions/cache@v2

with:
key: ${{ github.ref }}
path: .aux

- run: pip install mkdocs-material
- run: mkdocs build
- run: mkdocs gh-deploy --force

0 comments on commit 04ef98e

Please sign in to comment.