Skip to content

Commit 54dfb32

Browse files
ci: AUR publish tracking workflow
Closes #60 Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 34e94b9 commit 54dfb32

2 files changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/publish-aur.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Publish to AUR
2+
on:
3+
push:
4+
tags:
5+
- "create-awesome-python-app@*"
6+
workflow_dispatch:
7+
inputs:
8+
version:
9+
description: "Package version"
10+
required: true
11+
jobs:
12+
aur:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Placeholder
17+
run: |
18+
echo "AUR publish requires AUR_SSH_PRIVATE_KEY + optional Create-Python-App/aur-package mirror"
19+
echo "See docs/DISTRIBUTION_SETUP.md"

docs/DISTRIBUTION_SETUP.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,7 @@ Secrets and publishers (see also #58–#63):
1515
2. Repository: `Create-Python-App/create-python-app`
1616
3. Workflow: `publish.yml`
1717
4. No `PYPI_TOKEN` secret required when using OIDC
18+
19+
## AUR
20+
21+
Track sibling repo `Create-Python-App/aur-package` when ready. Secrets: `AUR_SSH_PRIVATE_KEY`, `AUR_REPO_TOKEN`.

0 commit comments

Comments
 (0)