|
|
|
@ -1,26 +1,29 @@ |
|
|
|
name: Deploy Docs |
|
|
|
on: |
|
|
|
workflow_run: |
|
|
|
workflow_run: # zizmor: ignore[dangerous-triggers] |
|
|
|
workflows: |
|
|
|
- Build Docs |
|
|
|
types: |
|
|
|
- completed |
|
|
|
|
|
|
|
permissions: |
|
|
|
deployments: write |
|
|
|
issues: write |
|
|
|
pull-requests: write |
|
|
|
statuses: write |
|
|
|
permissions: {} |
|
|
|
|
|
|
|
jobs: |
|
|
|
deploy-docs: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
permissions: |
|
|
|
deployments: write |
|
|
|
issues: write |
|
|
|
pull-requests: write |
|
|
|
statuses: write |
|
|
|
steps: |
|
|
|
- name: Dump GitHub context |
|
|
|
env: |
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }} |
|
|
|
run: echo "$GITHUB_CONTEXT" |
|
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 |
|
|
|
with: |
|
|
|
persist-credentials: false |
|
|
|
- name: Set up Python |
|
|
|
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 |
|
|
|
with: |
|
|
|
@ -28,10 +31,8 @@ jobs: |
|
|
|
- name: Setup uv |
|
|
|
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0 |
|
|
|
with: |
|
|
|
enable-cache: true |
|
|
|
cache-dependency-glob: | |
|
|
|
pyproject.toml |
|
|
|
uv.lock |
|
|
|
version: "0.11.4" |
|
|
|
enable-cache: false |
|
|
|
- name: Install GitHub Actions dependencies |
|
|
|
run: uv sync --locked --no-dev --group github-actions |
|
|
|
- name: Deploy Docs Status Pending |
|
|
|
@ -61,8 +62,8 @@ jobs: |
|
|
|
BRANCH: ${{ ( github.event.workflow_run.head_repository.full_name == github.repository && github.event.workflow_run.head_branch == 'master' && 'main' ) || ( github.event.workflow_run.head_sha ) }} |
|
|
|
uses: cloudflare/wrangler-action@da0e0dfe58b7a431659754fdf3f186c529afbe65 # v3.14.1 |
|
|
|
with: |
|
|
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} |
|
|
|
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} |
|
|
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} # zizmor: ignore[secrets-outside-env] |
|
|
|
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} # zizmor: ignore[secrets-outside-env] |
|
|
|
command: pages deploy ./site --project-name=${{ env.PROJECT_NAME }} --branch=${{ env.BRANCH }} |
|
|
|
- name: Deploy Docs Status Error |
|
|
|
if: failure() |
|
|
|
|