0
0
mirror of https://github.com/sp-tarkov/build.git synced 2025-02-13 05:10:47 -05:00

Updates the Discord embed colours

This commit is contained in:
Refringe 2024-03-14 12:20:23 -04:00
parent dad5ea94fc
commit a1ccce30db
Signed by: Refringe
GPG Key ID: 7715B85B4A6306ED

View File

@ -619,23 +619,23 @@ jobs:
MODS="" MODS=""
if [[ "${{ needs.prepare.outputs.is_nightly }}" == "true" ]]; then if [[ "${{ needs.prepare.outputs.is_nightly }}" == "true" ]]; then
EMBED_COLOR=0xfff700 EMBED_COLOR=16705372
EMBED_TITLE="Fresh Nightly Build" EMBED_TITLE="Fresh Nightly Build"
EMBED_DESCRIPTION=$'A new nightly build is now available. These are untested and considered unstable. Absolutely no support is provided—If you ask for help you **will be banned from the #dev-builds channel without notice**. 7-Zip is *required* to extract the release.' EMBED_DESCRIPTION=$'A new nightly build is now available. These are untested and considered unstable. Absolutely no support is provided—If you ask for help you **will be banned from the #dev-builds channel without notice**. 7-Zip is *required* to extract the release.'
MODS="$MODS_ENABLED_BLEEDING" MODS="$MODS_ENABLED_BLEEDING"
else else
if [ "$BUILD_TYPE" == "bleeding" ]; then if [ "$BUILD_TYPE" == "bleeding" ]; then
EMBED_COLOR=0xff0000 EMBED_COLOR=15548997
EMBED_TITLE="New Bleeding Build" EMBED_TITLE="New Bleeding Build"
EMBED_DESCRIPTION=$'A new bleeding edge build is now available. These are for testing issues and not for general gameplay. 7-Zip is *required* to extract the release.' EMBED_DESCRIPTION=$'A new bleeding edge build is now available. These are for testing issues and not for general gameplay. 7-Zip is *required* to extract the release.'
MODS="$MODS_ENABLED_BLEEDING" MODS="$MODS_ENABLED_BLEEDING"
elif [ "$BUILD_TYPE" == "debug" ]; then elif [ "$BUILD_TYPE" == "debug" ]; then
EMBED_COLOR=0x000055 EMBED_COLOR=2123412
EMBED_TITLE="New Debug Build" EMBED_TITLE="New Debug Build"
EMBED_DESCRIPTION=$'A new debug build is now available. These have extra-verbose logging enabled. 7-Zip is *required* to extract the release.' EMBED_DESCRIPTION=$'A new debug build is now available. These have extra-verbose logging enabled. 7-Zip is *required* to extract the release.'
MODS="$MODS_ENABLED_DEBUG" MODS="$MODS_ENABLED_DEBUG"
else else
EMBED_COLOR=0x33ff00 EMBED_COLOR=5763719
EMBED_TITLE="New Stable Build" EMBED_TITLE="New Stable Build"
EMBED_DESCRIPTION=$'A new stable release build is now ready for download. 7-Zip is *required* to extract the release.' EMBED_DESCRIPTION=$'A new stable release build is now ready for download. 7-Zip is *required* to extract the release.'
MODS="$MODS_ENABLED_RELEASE" MODS="$MODS_ENABLED_RELEASE"