Skip to content

Commit

Permalink
update python docs action
Browse files Browse the repository at this point in the history
  • Loading branch information
emgeee committed Nov 14, 2024
1 parent 381d56f commit 419337c
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/python-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ jobs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: py-denormalized
working-directory: ./py-denormalized
steps:
- uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.5.1"
enable-cache: true
cache-dependency-glob: "uv.lock"
# enable-cache: true
# cache-dependency-glob: "uv.lock"

- name: Set up Python
run: uv python install
Expand All @@ -43,18 +43,18 @@ jobs:

# Deploy the artifact to GitHub pages.
# This is a separate job so that only actions/deploy-pages has the necessary permissions.
deploy:
needs: build
runs-on: ubuntu-latest
defaults:
run:
working-directory: py-denormalized
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4
# deploy:
# needs: build
# runs-on: ubuntu-latest
# defaults:
# run:
# working-directory: ./py-denormalized
# permissions:
# pages: write
# id-token: write
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}
# steps:
# - id: deployment
# uses: actions/deploy-pages@v4

0 comments on commit 419337c

Please sign in to comment.