2018-07-09 16:20:40 +02:00
|
|
|
#!/usr/bin/env bash
|
2023-05-13 07:48:24 +02:00
|
|
|
# Nerd Fonts Version: 3.0.1
|
2017-05-02 01:43:28 +02:00
|
|
|
# calls the necessary scripts in the necessary order to prepare for a release
|
2022-08-23 15:59:54 +02:00
|
|
|
#
|
|
|
|
# This is not used for production
|
2017-05-02 01:43:28 +02:00
|
|
|
|
|
|
|
#set -x
|
2017-05-14 00:02:53 +02:00
|
|
|
LINE_PREFIX="# [Nerd Fonts] "
|
|
|
|
|
2017-05-02 01:43:28 +02:00
|
|
|
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"
|
2017-05-02 01:43:28 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
release=$1
|
|
|
|
|
|
|
|
./version-bump.sh "$release"
|
|
|
|
./gotta-patch-em-all-font-patcher!.sh
|
|
|
|
./generate-fontconfig.sh
|
|
|
|
./generate-casks.sh
|
|
|
|
./archive-fonts.sh
|
2022-08-23 15:59:54 +02:00
|
|
|
#./upload-archives.sh # better done as a separate step (via gh action)
|
2023-04-28 18:04:47 +02:00
|
|
|
./generate-css.sh
|
|
|
|
./generate-webfonts.sh
|
2017-05-02 01:43:28 +02:00
|
|
|
|
|
|
|
exit
|
|
|
|
|