Fix: handle AUR SSH exit code 1, bump to v0.2.9
parent
85b8d8de26
commit
c3a7ea811e
|
|
@ -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:
|
||||
|
|
|
|||
2
PKGBUILD
2
PKGBUILD
|
|
@ -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')
|
||||
|
|
|
|||
|
|
@ -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" }
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
"""Turn Up — USB serial mixer daemon for PipeWire/PulseAudio."""
|
||||
|
||||
__version__ = "0.2.8"
|
||||
__version__ = "0.2.9"
|
||||
|
|
|
|||
Loading…
Reference in New Issue