mirror of
https://onedev.site.tesses.net/crosslang
synced 2026-02-09 01:25:45 +00:00
15 lines
459 B
Bash
15 lines
459 B
Bash
#!/bin/bash
|
|
source ./version.sh
|
|
upload() {
|
|
curl --user tesses50:$GITEA_AUTH -X DELETE \
|
|
https://git.tesseslanguage.com/api/packages/tesses50/debian/pool/plucky/main/crosslang/$DEB_VERSION/$1
|
|
curl --user tesses50:$GITEA_AUTH \
|
|
--upload-file build/plucky/crosslang/$DEB_VERSION\_$1\.deb \
|
|
https://git.tesseslanguage.com/api/packages/tesses50/debian/pool/plucky/main/upload
|
|
}
|
|
upload amd64
|
|
upload arm64
|
|
upload armhf
|
|
upload riscv64
|
|
upload i386
|