mirror of
https://github.com/anultravioletaurora/Jellify.git
synced 2025-12-20 13:00:10 -06:00
* Add support for --PR flag in getRandomVersion.sh * Add --PR flag to getRandomVersion.sh calls Updated getRandomVersion.sh call to include --PR flag for both Android and iOS bundle creation. * Update maestro-test.yml * Update maestro-test.yml * Update maestro-test.yml * Create sendDiscordMessage * Replace Fastlane notifications with Node script * Rename sendDiscordMessage to sendDiscordMessage.js * Update sendDiscordMessage.js * Update sendDiscordMessage.js * Fux * frf * fix * gg * fix: Fix incorrect return of on Web * fix: Fix Versioned URL
64 lines
1.3 KiB
Bash
64 lines
1.3 KiB
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
FILE="ota.version"
|
|
|
|
# Check if --PR flag is passed
|
|
IS_PR=false
|
|
if [[ "${1:-}" == "--PR" ]]; then
|
|
IS_PR=true
|
|
fi
|
|
|
|
# Array of sentences
|
|
sentences=(
|
|
"Git Blame violet"
|
|
"Thank you pikachu"
|
|
"Margelo folks are Awesome"
|
|
"Pikachu Should have coded this"
|
|
"meta sue violet"
|
|
)
|
|
|
|
# Read previous value if file exists
|
|
prev=""
|
|
if [[ -f "$FILE" ]]; then
|
|
prev=$(<"$FILE")
|
|
fi
|
|
|
|
# Function to get a random new sentence (not same as prev)
|
|
get_random_sentence() {
|
|
local choice
|
|
while true; do
|
|
choice="${sentences[RANDOM % ${#sentences[@]}]}"
|
|
if [[ "$choice" != "$prev" ]]; then
|
|
echo "$choice"
|
|
return
|
|
fi
|
|
done
|
|
}
|
|
|
|
# Function to generate a random 3-digit alphanumeric string
|
|
get_random_alphanum() {
|
|
local chars="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
local result=""
|
|
for i in {1..3}; do
|
|
result="${result}${chars:RANDOM%${#chars}:1}"
|
|
done
|
|
echo "$result"
|
|
}
|
|
|
|
new_sentence=$(get_random_sentence)
|
|
alphanum_suffix=$(get_random_alphanum)
|
|
version_string="${new_sentence} (${alphanum_suffix})"
|
|
|
|
# Prefix for PR builds
|
|
if $IS_PR; then
|
|
version_string="PULL_REQUEST - ${version_string}"
|
|
fi
|
|
|
|
# Write atomically
|
|
tmp="${FILE}.tmp.$$"
|
|
echo "$version_string" > "$tmp"
|
|
mv "$tmp" "$FILE"
|
|
|
|
echo "✅ Updated $FILE with: \"$version_string\""
|