Skip to content

refactor: Try using uv to prepare environments #25

refactor: Try using uv to prepare environments

refactor: Try using uv to prepare environments #25

Workflow file for this run

name: Deploy docs
on:
push:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- uses: actions/cache@v3
name: Cache/restore pip data
with:
path: ~/.cache/pip
key: pip
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Cache/restore Playwright browsers
uses: actions/cache@v3
with:
path: ~/.cache/ms-playwright/
key: playwright
- name: Install Playwright dependencies
run: shot-scraper install
- name: Build everything
run: python build.py
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: site
deploy:
if: github.event_name == 'push' && github.ref_name == github.event.repository.default_branch
needs: build
concurrency:
group: "pages"
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}