Skip to content

Commit fac248b

Browse files
committed
attemting to fixing aur workflow
1 parent a34a891 commit fac248b

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

.github/workflows/update-aur.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
4141
- name: Clone AUR repo
4242
run: |
43-
git clone ssh://[email protected]/gitfetch-python.git aur-repo
43+
GIT_SSH_COMMAND="ssh -i ~/.ssh/aur_key -o UserKnownHostsFile=~/.ssh/known_hosts" git clone ssh://[email protected]/gitfetch-python.git aur-repo
4444
cd aur-repo
4545
git config user.name "GitHub Actions"
4646
git config user.email "[email protected]"

README.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ A neofetch-style CLI tool for GitHub statistics. Display your GitHub profile and
2222

2323
See installation instructions at: https://github.com/cli/cli#installation
2424

25-
2625
### macOS
2726

2827
```bash
@@ -57,24 +56,22 @@ brew install matars/gitfetch/gitfetch
5756

5857
### Arch Linux (AUR)
5958

60-
## Note: currenly not working, use local installation - AUR packagte will be fixed soon
61-
6259
```bash
63-
yay -S gitfetch
60+
yay -S gitfetch-python
6461
```
6562

6663
Or with other AUR helpers:
6764

6865
```bash
69-
paru -S gitfetch
70-
trizen -S gitfetch
66+
paru -S gitfetch-python
67+
trizen -S gitfetch-python
7168
```
7269

7370
Or manual build:
7471

7572
```bash
76-
git clone https://aur.archlinux.org/gitfetch.git
77-
cd gitfetch
73+
git clone https://aur.archlinux.org/gitfetch-python.git
74+
cd gitfetch-python
7875
makepkg -si
7976
```
8077

@@ -84,6 +81,12 @@ makepkg -si
8481
2. `cd` into the repo
8582
3. Then type the below command
8683

84+
### With `pip`
85+
86+
```bash
87+
pip install -e .
88+
```
89+
8790
### With `uv`
8891

8992
```bash
@@ -96,10 +99,6 @@ uv tool install git+https://github.com/Matars/gitfetch
9699
pipx install git+https://github.com/Matars/gitfetch
97100
```
98101

99-
```bash
100-
pip install -e .
101-
```
102-
103102
## First Run
104103

105104
On first run, gitfetch will initialize and ask you to configure your default GitHub username:

0 commit comments

Comments
 (0)