2023-02-25 08:49:22 +01:00
|
|
|
# Sign the packages
|
2023-02-25 08:54:57 +01:00
|
|
|
dpkg-sig --sign builder ./output/pika-amdgpu-core*.deb
|
2023-02-25 08:49:22 +01:00
|
|
|
|
|
|
|
# Pull down existing ppa repo db files etc
|
|
|
|
rsync -azP --exclude '*.deb' ferreo@direct.pika-os.com:/srv/www/pikappa/ ./output/repo
|
|
|
|
|
|
|
|
# Remove our existing package from the repo
|
2023-08-28 12:14:58 +02:00
|
|
|
reprepro -C main -V --basedir ./output/repo/ removefilter lunar 'Package (% pika-amdgpu-core*)'
|
2023-02-25 08:49:22 +01:00
|
|
|
|
|
|
|
# Add the new package to the repo
|
2023-08-28 12:14:58 +02:00
|
|
|
reprepro -C main -V --basedir ./output/repo/ includedeb lunar ./output/pika-amdgpu-core*.deb
|
2023-02-25 08:49:22 +01:00
|
|
|
|
|
|
|
# Push the updated ppa repo to the server
|
2023-04-05 23:21:44 +02:00
|
|
|
rsync -azP ./output/repo/ ferreo@direct.pika-os.com:/srv/www/pikappa/
|