mirror of
https://github.com/ryanoasis/nerd-fonts.git
synced 2025-01-06 21:49:40 +02:00
55 lines
1.5 KiB
Bash
Executable File
55 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
# version: 1.0.0
|
|
# Iterates over all archives and uploads to given release
|
|
|
|
# uncomment to debug:
|
|
#set -x
|
|
|
|
cd ../../archives/ || {
|
|
echo >&2 "# Could not find archives directory"
|
|
exit 1
|
|
}
|
|
|
|
private_config="../private.cfg"
|
|
|
|
# source the private confit file if exists:
|
|
if [ -f "$private_config" ]
|
|
then
|
|
source "$private_config"
|
|
else
|
|
echo >&2 "# Could not source private config"
|
|
exit 1
|
|
fi
|
|
|
|
TOKEN=$github_access_token
|
|
OWNER="ryanoasis"
|
|
REPO="nerd-fonts"
|
|
# release id from tag:
|
|
#RELEASE="v0.8.0"
|
|
RELEASE=3229472 # @todo get dynamically based on tag from first param?
|
|
#FILEPATH="test-asset-upload.txt"
|
|
#FILE="https://uploads.github.com/repos/$OWNER/$REPO/releases/tags/$RELEASE/assets{?name,label}"
|
|
|
|
#curl -# -XPOST -H "Authorization:token $TOKEN" -H "Content-Type:application/octet-stream" --data-binary @$FILEPATH https://uploads.github.com/repos/$OWNER/$REPO/releases/$RELEASE/assets?name=$(basename $FILEPATH)&url=xyz
|
|
|
|
# just test a basic upload for now:
|
|
#exit
|
|
|
|
#find ./Hack -maxdepth 0 -type d | # uncomment to test 1 font
|
|
find ./ -name "*.zip" | # uncomment to test all font
|
|
while read -r filename
|
|
do
|
|
|
|
basename=$(basename "$filename")
|
|
#searchdir=$filename
|
|
#fontdir=$(basename "$(dirname "$dirname")")
|
|
#outputdir=$PWD/../archives/
|
|
|
|
printf "Uploading %s" "$basename"
|
|
|
|
curl -# -XPOST -H "Authorization:token $TOKEN" -H "Content-Type:application/octet-stream" --data-binary @"$basename" https://uploads.github.com/repos/$OWNER/$REPO/releases/$RELEASE/assets?name="$basename"
|
|
|
|
#exit # uncomment to test only 1 zip
|
|
|
|
done
|