Aravinth Manivannan
73ef0dad0d
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
122 lines
2.8 KiB
Bash
Executable file
122 lines
2.8 KiB
Bash
Executable file
#!/bin/bash
|
|
# Copyright (C) 2022 Aravinth Manivannan <realaravinth@batsense.net>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
# publish.sh: grab bin from docker container, pack, sign and upload
|
|
# $2: binary version
|
|
# $3: Docker img tag
|
|
# $4: dumbserve password
|
|
|
|
set -xEeuo pipefail
|
|
|
|
DUMBSERVE_USERNAME=forgeflux
|
|
DUMBSERVE_PASSWORD=$4
|
|
DUMBSERVE_HOST="https://$DUMBSERVE_USERNAME:$DUMBSERVE_PASSWORD@dl.forgeflux.org"
|
|
|
|
NAME=ftest
|
|
KEY=56861597C15E54520A36983A6828E4A2E5B91DB9
|
|
|
|
TMP_DIR=$(mktemp -d)
|
|
FILENAME="$NAME-$2-linux-amd64"
|
|
TARBALL=$FILENAME.tar.gz
|
|
TARGET_DIR="$TMP_DIR/$FILENAME/"
|
|
mkdir -p $TARGET_DIR
|
|
DOCKER_IMG="forgeflux/ftest:$3"
|
|
|
|
|
|
get_bin(){
|
|
echo "[*] Grabbing binary"
|
|
#container_id=$(docker create $DOCKER_IMG)
|
|
#docker cp $container_id:/usr/local/bin/pages $TARGET_DIR/
|
|
#docker rm -v $container_id
|
|
cp target/release/ftest $TARGET_DIR
|
|
}
|
|
|
|
copy() {
|
|
echo "[*] Copying dist assets"
|
|
cp README.md $TARGET_DIR
|
|
cp -r LICENSES/ $TARGET_DIR
|
|
cp -r config/ $TARGET_DIR
|
|
# cp -r contrib/ $TARGET_DIR
|
|
mv $TARGET_DIR/config/default.toml $TARGET_DIR/config/config.toml
|
|
|
|
# mkdir $TARGET_DIR/docs
|
|
# cp docs/CONFIGURATION.md $TARGET_DIR/docs
|
|
# cp -r docs/installation/ $TARGET_DIR/docs
|
|
|
|
get_bin
|
|
}
|
|
|
|
pack() {
|
|
echo "[*] Creating dist tarball"
|
|
pushd $TMP_DIR
|
|
tar -cvzf $TARBALL $FILENAME
|
|
popd
|
|
}
|
|
|
|
checksum() {
|
|
echo "[*] Generating dist tarball checksum"
|
|
pushd $TMP_DIR
|
|
sha256sum $TARBALL > $TARBALL.sha256
|
|
popd
|
|
}
|
|
|
|
sign() {
|
|
echo "[*] Signing dist tarball checksum"
|
|
pushd $TMP_DIR
|
|
export GPG_TTY=$(tty)
|
|
gpg --verbose \
|
|
--pinentry-mode loopback \
|
|
--batch --yes \
|
|
--passphrase $GPG_PASSWORD \
|
|
--local-user $KEY \
|
|
--output $TARBALL.asc \
|
|
--sign --detach \
|
|
--armor $TARBALL
|
|
popd
|
|
}
|
|
|
|
delete_dir() {
|
|
curl --location --request DELETE "$DUMBSERVE_HOST/api/v1/files/delete" \
|
|
--header 'Content-Type: application/json' \
|
|
--data-raw "{
|
|
\"path\": \"$1\"
|
|
}"
|
|
}
|
|
|
|
upload_dist() {
|
|
upload_dist="ftest/$1"
|
|
delete_dir $upload_dist
|
|
|
|
pushd $TMP_DIR
|
|
for file in $TARBALL $TARBALL.asc $TARBALL.sha256
|
|
do
|
|
curl -v \
|
|
-F upload=@$file \
|
|
"$DUMBSERVE_HOST/api/v1/files/upload?path=$upload_dist/"
|
|
done
|
|
popd
|
|
}
|
|
|
|
|
|
publish() {
|
|
copy
|
|
pack
|
|
checksum
|
|
sign
|
|
upload_dist $2
|
|
}
|
|
|
|
$1 $@
|