use tar instead of individual artifacts
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon Marsh 2023-05-27 13:08:42 +01:00
parent 76726f9c3b
commit a3c1e1e98a

View File

@ -2,9 +2,8 @@
########################################################################## ##########################################################################
DIST=$(cat /dist) DIST=$(cat /dist)
ARTIFACTS=( 'bird' 'birdc' 'birdcl' )
VERSION=$(grep '^Version:' misc/bird.spec | cut -d' ' -f2) VERSION=$(grep '^Version:' misc/bird.spec | cut -d' ' -f2)
URLT="https://git.burble.dn42/api/packages/burble/generic/bird/${VERSION}/%s" URL="https://git.burble.dn42/api/packages/burble.dn42/generic/bird/${VERSION}/"
echo "Building bird $VERSION for $DIST" echo "Building bird $VERSION for $DIST"
@ -31,13 +30,11 @@ fi
# build it # build it
make -j2 2>&1 | tee build.out make -j2 2>&1 | tee build.out
# push artifacts to gitea # tar and push artifacts to gitea
for artifact in "${ARTIFACTS[@]}" tar="bird.${DIST}.tar.gz"
do tar -cvzf "$tar" bird birdc birdcl
echo "Uploading $artifact ..."
url=$(printf "$URLT" "${DIST}.${artifact}") curl --user "burble:${TOKEN}" --upload-file "$tar" "${URL}/${tar}"
curl --user "burble:${TOKEN}" --upload-file "${artifact}" "$url"
done
echo "All done" echo "All done"