Skip to content

Commit f8e74fe

Browse files
authored
Merge pull request #795 from atlanhq/chore/cleanup-dockerfiles-and-workflows
Chore/cleanup dockerfiles and workflows
2 parents f9e6417 + 55fd191 commit f8e74fe

3 files changed

Lines changed: 19 additions & 7 deletions

File tree

.github/workflows/pyatlan-chainguard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
uses: docker/build-push-action@v6
164164
with:
165165
context: .
166-
file: ./Dockerfile.chainguard
166+
file: ./Dockerfile
167167
platforms: ${{ env.PLATFORMS }}
168168
push: true
169169
tags: |

.github/workflows/pyatlan-docs.yaml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,25 @@ jobs:
1212
runs-on: ubuntu-latest
1313
name: "Sphinx"
1414
steps:
15-
- name: Build Sphinx
16-
id: deployment
17-
uses: sphinx-notes/pages@v3
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Set up Python
19+
uses: actions/setup-python@v5
1820
with:
19-
publish: false
20-
- name: Publish Sphinx
21+
python-version: "3.12"
22+
23+
- name: Install uv
24+
uses: astral-sh/setup-uv@v6
25+
26+
- name: Install dependencies
27+
run: uv sync --group docs
28+
29+
- name: Build Sphinx docs
30+
run: uv run sphinx-build -b html docs docs/_build
31+
32+
- name: Publish to GitHub Pages
2133
uses: peaceiris/actions-gh-pages@v4
2234
with:
2335
github_token: ${{ secrets.GITHUB_TOKEN }}
24-
publish_dir: ${{ steps.deployment.outputs.artifact }}
36+
publish_dir: docs/_build
File renamed without changes.

0 commit comments

Comments
 (0)