b95bab0e34
related to https://github.com/i3/i3/issues/4340
24 lines
589 B
Bash
Executable File
24 lines
589 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
for fn in distbuild/deb/debian-amd64/*.deb distbuild/deb/debian-i386/*.deb
|
|
do
|
|
echo "pushing $fn to balto"
|
|
curl \
|
|
--header "Authorization: Bearer ${BALTO_TOKEN}" \
|
|
--form "package=@${fn}" \
|
|
--form distribution=all \
|
|
https://i3.baltorepo.com/i3/i3-autobuild/upload/
|
|
done
|
|
|
|
for fn in distbuild/deb/ubuntu-amd64/*.deb distbuild/deb/ubuntu-i386/*.deb
|
|
do
|
|
echo "pushing $fn to balto"
|
|
curl \
|
|
--header "Authorization: Bearer ${BALTO_TOKEN}" \
|
|
--form "package=@${fn}" \
|
|
--form distribution=all \
|
|
https://i3.baltorepo.com/i3/i3-autobuild-ubuntu/upload/
|
|
done
|