-
-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
infra: migrate to pdm and full ruff (#384)
- Loading branch information
1 parent
8c88293
commit eddb978
Showing
53 changed files
with
1,659 additions
and
1,188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
name: Deploy Documentation Preview | ||
|
||
on: | ||
workflow_run: | ||
workflows: [Tests And Linting] | ||
types: [completed] | ||
|
||
jobs: | ||
deploy: | ||
if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'pull_request' }} | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Download artifact | ||
uses: dawidd6/action-download-artifact@v2 | ||
with: | ||
workflow_conclusion: success | ||
run_id: ${{ github.event.workflow_run.id }} | ||
path: docs-preview | ||
name: docs-preview | ||
|
||
- name: Set PR number | ||
run: echo "PR_NUMBER=$(cat docs-preview/.pr_number)" >> $GITHUB_ENV | ||
|
||
- name: Deploy docs preview | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
folder: docs-preview/docs/_build/html | ||
token: ${{ secrets.DOCS_PREVIEW_DEPLOY_TOKEN }} | ||
repository-name: litestar-org/polyfactory-docs-preview | ||
clean: false | ||
target-folder: ${{ env.PR_NUMBER }} | ||
branch: gh-pages | ||
|
||
- uses: actions/github-script@v6 | ||
env: | ||
PR_NUMBER: ${{ env.PR_NUMBER }} | ||
with: | ||
script: | | ||
const issue_number = process.env.PR_NUMBER | ||
const body = "Documentation preview will be available shortly at https://litestar-org.github.io/polyfactory-docs-preview/" + issue_number | ||
const opts = github.rest.issues.listComments.endpoint.merge({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: issue_number, | ||
}); | ||
const comments = await github.paginate(opts) | ||
for (const comment of comments) { | ||
if (comment.user.id === 41898282 && comment.body === body) { | ||
await github.rest.issues.deleteComment({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
comment_id: comment.id | ||
}) | ||
} | ||
} | ||
await github.rest.issues.createComment({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: issue_number, | ||
body: body, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Documentation Building | ||
|
||
on: | ||
release: | ||
types: [published] | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
docs: | ||
permissions: | ||
contents: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.11" | ||
|
||
- uses: pdm-project/setup-pdm@v3 | ||
name: Set up PDM | ||
with: | ||
python-version: "3.11" | ||
allow-python-prereleases: true | ||
cache: true | ||
|
||
- name: Install dependencies | ||
run: pdm install -G:docs | ||
|
||
- name: Fetch gh pages | ||
run: git fetch origin gh-pages --depth=1 | ||
|
||
- name: Build release docs | ||
run: pdm run python tools/build_docs.py docs-build | ||
if: github.event_name == 'release' | ||
|
||
- name: Build dev docs | ||
run: pdm run python tools/build_docs.py docs-build | ||
if: github.event_name == 'push' | ||
|
||
- name: Deploy | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
folder: docs-build |
Oops, something went wrong.