File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Preview viz
2+
3+ on :
4+ push :
5+ branches :
6+ - claude/tuftean-marginalia-viz-TB0fw
7+ workflow_dispatch :
8+
9+ permissions :
10+ contents : read
11+
12+ concurrency :
13+ group : preview-viz
14+ cancel-in-progress : true
15+
16+ jobs :
17+ upload-preview :
18+ runs-on : ubuntu-latest
19+ steps :
20+ - uses : actions/checkout@v4
21+ - uses : astral-sh/setup-uv@v5
22+ - uses : actions/setup-python@v5
23+ with :
24+ python-version : ' 3.13'
25+ - name : Install dependencies
26+ run : uv sync --all-groups
27+ - name : Build generated assets
28+ run : make build
29+ - name : Upload Cloudflare Preview
30+ env :
31+ CLOUDFLARE_API_TOKEN : ${{ secrets.CLOUDFLARE_API_TOKEN }}
32+ CLOUDFLARE_ACCOUNT_ID : ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
33+ run : |
34+ uv run pywrangler preview \
35+ --name viz \
36+ --message "${{ github.sha }}" \
37+ --json
You can’t perform that action at this time.
0 commit comments