Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/publish-aur.yml
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
name: Publish to AUR
on:
push:
tags:
- "create-awesome-python-app@*"
workflow_dispatch:
inputs:
version:
description: "Package version"
required: true
jobs:
aur:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Placeholder
run: |
echo "AUR publish requires AUR_SSH_PRIVATE_KEY + optional Create-Python-App/aur-package mirror"
echo "See docs/DISTRIBUTION_SETUP.md"
4 changes: 4 additions & 0 deletions docs/DISTRIBUTION_SETUP.md
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,3 +15,7 @@ Secrets and publishers (see also #58–#63):
2. Repository: `Create-Python-App/create-python-app`
3. Workflow: `publish.yml`
4. No `PYPI_TOKEN` secret required when using OIDC

## AUR

Track sibling repo `Create-Python-App/aur-package` when ready. Secrets: `AUR_SSH_PRIVATE_KEY`, `AUR_REPO_TOKEN`.
Loading