nerd-fonts/bin/scripts/release.sh
2023-01-24 15:56:06 +00:00

26 lines
601 B
Bash
Executable file

#!/usr/bin/env bash
# Nerd Fonts Version: 2.3.3
# calls the necessary scripts in the necessary order to prepare for a release
#
# This is not used for production
#set -x
LINE_PREFIX="# [Nerd Fonts] "
if [ ! $# -eq 1 ]
then
echo "$LINE_PREFIX No release version given, must give semver release versionin format: #.#.#, e.g. 1.1.0"
fi
release=$1
./version-bump.sh "$release"
./standardize-and-complete-readmes.sh
./gotta-patch-em-all-font-patcher!.sh
./generate-fontconfig.sh
./generate-casks.sh
./archive-fonts.sh
#./upload-archives.sh # better done as a separate step (via gh action)
exit