This commit is contained in:
Kabooshki 2024-04-29 10:55:18 -05:00
parent 94ba61f32a
commit 7daee664e1
2 changed files with 4 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
keys.txt

View File

@ -1,3 +1,5 @@
#!/bin/bash
curl --user Archive:d8e818c6f307e1a08973ff6b281255815bd95b1d --upload-file $1 https://gitea.henriserverack.com/api/packages/Archive-Team/debian/pool/bullseye/main/upload
key=$(sed -n 1p keys.txt)
curl --user Archive:$key --upload-file $1 https://gitea.henriserverack.com/api/packages/Archive-Team/debian/pool/bullseye/main/upload
echo "Upload Complete"