16 lines
492 B
Markdown
16 lines
492 B
Markdown
I made custom repo for people who want to test things and don't want to build manually:
|
|
1) Download my sign key
|
|
```
|
|
cd /etc/apk/keys
|
|
sudo curl -JO https://git.nekocwd.duckdns.org/api/packages/NekoCWD/alpine/key
|
|
```
|
|
2) Add my repo
|
|
```
|
|
echo @nightly https://git.nekocwd.duckdns.org/api/packages/NekoCWD/alpine/edge/nightly/ | sudo tee -a /etc/apk/repositories
|
|
```
|
|
3) Update package index
|
|
```
|
|
sudo apk update
|
|
```
|
|
|
|
To install package from this repo use `package_name@nightly`
|