Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix publish workflow docs generation #61

Merged
merged 1 commit into from
Jul 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,24 @@ jobs:
- name: pages
uses: actions/configure-pages@v5


- name: set up python
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
cache: "pip"
cache-dependency-path: "pyproject.toml"
# uv is not yet supported by this cache, its fast enough to not cache
# cache: "pip"
# cache-dependency-path: "pyproject.toml"

- name: install uv
uses: yezz123/setup-uv@v4
with:
uv-venv: "arcee-ci"

- name: install invoke
run: pip install invoke
run: uv pip install invoke

- name: install dependencies
run: uv pip install '.[dev]'

- name: build
run: inv build
Expand Down
Loading