nerd-fonts/bin/scripts/release.sh

27 lines
601 B
Bash
Raw Normal View History

2018-07-09 16:20:40 +02:00
#!/usr/bin/env bash
2022-08-27 00:15:32 +02:00
# Nerd Fonts Version: 2.2.1
# calls the necessary scripts in the necessary order to prepare for a release
#
# This is not used for production
#set -x
2017-05-14 00:02:53 +02:00
LINE_PREFIX="# [Nerd Fonts] "
if [ ! $# -eq 1 ]
then
2017-05-14 00:02:53 +02:00
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