Skip to content

Retry nix installs after restarting daemon #54

Retry nix installs after restarting daemon

Retry nix installs after restarting daemon #54

Workflow file for this run

name: Deploy abxpkg landing page to GitHub Pages
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on:
group: Default
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install project
run: uv sync --all-extras
- name: Render landing page
run: uv run python docs/generate.py
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on:
group: Default
needs: build
timeout-minutes: 20
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4