Skip to content

Commit

Permalink
CI: fix scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
MaddyGuthridge committed Apr 8, 2024
1 parent 4d7baca commit 5a62791
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mkdocs-dryrun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
# Build documentation to ./site/ directory
- name: Build Documentation
id: build
run: poetry run docs
run: poetry run python -m scripts.build_docs

# Upload build outputs
- name: Upload build artifacts markdown
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
# Build documentation to ./site/ directory
- name: Build Documentation
id: build
run: poetry run docs
run: poetry run python -m scripts.build_docs

# Upload artifact from the ./site/ directory using the expected format for GitHub Pages
- name: Upload Artifact
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- run: poetry install --no-root

- name: Use transdoc to build documentation
run: poetry run build
run: poetry run python -m scripts.build_lib

- name: Build and publish package
run: poetry publish --build -u __token__ -p ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 5a62791

Please sign in to comment.