Skip to content

Commit

Permalink
fix: update deploy-docs.yml (#1724)
Browse files Browse the repository at this point in the history
* fix: update deploy-docs.yml

* chore: update deploy-docs.yml to include requests-toolbelt and poetry install --only=docs
  • Loading branch information
jhonylucas74 authored Jul 10, 2024
1 parent 7c8261b commit c66a124
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,24 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up poetry
run: pipx install poetry

- name: Set up python
uses: actions/setup-python@v4
with:
cache: poetry
python-version: '3.7'

- name: Install requirements
run: poetry install --only=docs
- run: mkdocs gh-deploy --force
working-directory: ./python-package
run: |
pip install requests-toolbelt
poetry install --only=docs
- name: Build and deploy docs
working-directory: ./docs
run: mkdocs gh-deploy --force
env:
GOOGLE_ANALYTICS_KEY: ${{ secrets.GOOGLE_ANALYTICS_KEY }}
1 change: 0 additions & 1 deletion docs/docs/access_data_packages.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Pacotes

Os pacotes da Base dos Dados permitem o acesso ao *datalake* público
Expand Down

0 comments on commit c66a124

Please sign in to comment.