Skip to content

Commit e66ff6b

Browse files
👷 Update update-aur.yml
1 parent cf36c76 commit e66ff6b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/update-aur.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ jobs:
5050
export GIT_SSH_COMMAND="ssh -i /root/.ssh/aur -o StrictHostKeyChecking=no"
5151
5252
# Attempts to clone existing package
53-
if git clone ssh://aur@aur.archlinux.org/sshctl-git.git aur-repo; then
53+
if git clone ssh://aur@aur.archlinux.org/sshctl.git aur-repo; then
5454
echo "✅ Existing AUR package cloned"
5555
else
5656
echo "📦 Creating new AUR package"
5757
mkdir aur-repo
5858
cd aur-repo
5959
git init
60-
git remote add origin ssh://aur@aur.archlinux.org/sshctl-git.git
60+
git remote add origin ssh://aur@aur.archlinux.org/sshctl.git
6161
cd ..
6262
fi
6363
@@ -73,10 +73,10 @@ jobs:
7373
cd aur-repo
7474
cat > PKGBUILD << EOF
7575
# Maintainer: ${{ secrets.AUR_MAINTAINER_NAME }} <${{ secrets.AUR_MAINTAINER_EMAIL }}>
76-
pkgname=sshctl-git
76+
pkgname=sshctl
7777
pkgver=${{ steps.version.outputs.version }}
7878
pkgrel=1
79-
pkgdesc="SSH connection manager CLI tool"
79+
pkgdesc="SSH connection manager CLI tool (binary stable)"
8080
arch=('x86_64')
8181
url="https://github.com/${{ github.repository }}"
8282
license=('MIT')
@@ -133,7 +133,7 @@ jobs:
133133
# Ensure we're in a proper git directory
134134
if [ ! -d .git ]; then
135135
git init
136-
git remote add origin ssh://aur@aur.archlinux.org/sshctl-git.git
136+
git remote add origin ssh://aur@aur.archlinux.org/sshctl.git
137137
git branch -M master
138138
fi
139139

0 commit comments

Comments
 (0)