Fix: handle AUR SSH exit code 1, bump to v0.2.9

main
Sean Doran 2026-02-27 12:04:33 -05:00
parent 85b8d8de26
commit c3a7ea811e
No known key found for this signature in database
GPG Key ID: A9D7D25CD95E8579
4 changed files with 6 additions and 4 deletions

View File

@ -70,7 +70,9 @@ jobs:
chmod 600 ~/.ssh/aur
echo "Key fingerprint: $(ssh-keygen -l -f ~/.ssh/aur)"
ssh-keyscan aur.archlinux.org >> ~/.ssh/known_hosts
ssh -i ~/.ssh/aur -o StrictHostKeyChecking=no -T aur@aur.archlinux.org
# exit 1 = auth OK but interactive shell disabled (expected for AUR)
# exit 255 = connection/auth failure
ssh -i ~/.ssh/aur -o StrictHostKeyChecking=no -T aur@aur.archlinux.org || [[ $? -eq 1 ]]
- name: Clone AUR repo
env:

View File

@ -1,7 +1,7 @@
# Maintainer: Sean Doran <sdoran35@gmail.com>
# AUR updates are automated via GitHub Actions on version tag push
pkgname=turn-up-arch
pkgver=0.2.8
pkgver=0.2.9
pkgrel=1
pkgdesc="USB serial knob/button mixer daemon for PipeWire/PulseAudio on Linux"
arch=('any')

View File

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "turnup"
version = "0.2.8"
version = "0.2.9"
description = "USB serial knob/button mixer daemon for PipeWire/PulseAudio on Linux"
readme = "README.md"
license = { text = "MIT" }

View File

@ -1,3 +1,3 @@
"""Turn Up — USB serial mixer daemon for PipeWire/PulseAudio."""
__version__ = "0.2.8"
__version__ = "0.2.9"