Skip to content

ci: fixes issues with site.yaml action #407

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

Merged
merged 4 commits into from
May 2, 2025
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v3
- uses: astral-sh/setup-uv@v6
- run: uv python install
- run: make dev
- run: make lint
Expand All @@ -29,7 +29,7 @@ jobs:
- "3.13"
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v3
- uses: astral-sh/setup-uv@v6
- run: uv python install ${{ matrix.python-version }}
- run: make dev
- run: make test
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
run: echo "$CONNECT_LICENSE" > ./integration/license.lic
env:
CONNECT_LICENSE: ${{ secrets.CONNECT_LICENSE }}
- uses: astral-sh/setup-uv@v3
- uses: astral-sh/setup-uv@v6
- run: uv python install
- run: make -C ./integration ${{ matrix.CONNECT_VERSION }}
- uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v3
- uses: astral-sh/setup-uv@v6
- run: uv python install
- run: make dev
- run: make build
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v3
- uses: astral-sh/setup-uv@v6
- run: uv python install
- run: make dev
- run: make test
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: astral-sh/setup-uv@v3
- uses: astral-sh/setup-uv@v6
- run: uv python install
- uses: actions/setup-node@v4
with:
node-version: 22
- run: make build
- run: make install
- id: release
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: astral-sh/setup-uv@v3
- uses: astral-sh/setup-uv@v6
- run: uv python install
- run: make build install
- uses: quarto-dev/quarto-actions/setup@v2
Expand All @@ -40,9 +40,11 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: astral-sh/setup-uv@v3
- uses: astral-sh/setup-uv@v6
- run: uv python install
- uses: actions/setup-node@v4
with:
node-version: 22
- uses: quarto-dev/quarto-actions/setup@v2
- run: make dev
- run: make docs
Expand Down
3 changes: 1 addition & 2 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ api: ensure-dev
build: ensure-dev
CURRENT_YEAR=$(CURRENT_YEAR) \
PROJECT_VERSION=$(PROJECT_VERSION) \
$(UV) tool run --with ../ \
$(QUARTO) render

clean:
Expand All @@ -48,12 +47,12 @@ _extensions/posit-dev/posit-docs/_extension.yml:
$(QUARTO) add --no-prompt posit-dev/[email protected]
_extensions/machow/interlinks/_extension.yml:
$(QUARTO) add --no-prompt machow/quartodoc

deps: ensure-dev _extensions/posit-dev/posit-docs/_extension.yml _extensions/machow/interlinks/_extension.yml

preview: ensure-dev
CURRENT_YEAR=$(CURRENT_YEAR) \
PROJECT_VERSION=$(PROJECT_VERSION) \
$(UV) tool run --with ../ \
$(QUARTO) preview

deploy:
Expand Down
1 change: 1 addition & 0 deletions integration/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ PYTEST_ARGS ?= "-s"

# Versions
CONNECT_VERSIONS := \
2025.04.0 \
2025.03.0 \
2025.02.0 \
2025.01.0 \
Expand Down