File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments