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

Change formatting of new lines so bash and jq play nice

This commit is contained in:
Refringe 2024-03-11 15:52:22 -04:00
parent 0face99ef1
commit 1ff19c3777
Signed by: Refringe
GPG Key ID: 7715B85B4A6306ED

View File

@ -495,18 +495,18 @@ jobs:
if [ "$BUILD_TYPE" == "bleeding" ]; then if [ "$BUILD_TYPE" == "bleeding" ]; then
EMBED_COLOR=14423100 EMBED_COLOR=14423100
EMBED_TITLE="A New BLEEDING Build Released" EMBED_TITLE="A New BLEEDING Build Released"
EMBED_DESCRIPTION="A new bleeding build is now available for download. Mods are disabled for bleeding builds. 7-Zip is *required* to extract the release." EMBED_DESCRIPTION=$'A new bleeding build is now available for download. Mods are disabled for bleeding builds. 7-Zip is *required* to extract the release.'
elif [ "$BUILD_TYPE" == "debug" ]; then elif [ "$BUILD_TYPE" == "debug" ]; then
EMBED_COLOR=5789784 EMBED_COLOR=5789784
EMBED_TITLE="New DEBUG Build Available" EMBED_TITLE="New DEBUG Build Available"
EMBED_DESCRIPTION="A new debug build is now available for download. Mods are disabled for debug builds. 7-Zip is *required* to extract the release." EMBED_DESCRIPTION=$'A new debug build is now available for download. Mods are disabled for debug builds. 7-Zip is *required* to extract the release.'
else else
EMBED_COLOR=1374720 EMBED_COLOR=1374720
EMBED_TITLE="Release Build Now Available" EMBED_TITLE="Release Build Now Available"
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.'
fi fi
#EMBED_DESCRIPTION="${EMBED_DESCRIPTION}\\n\\n**Build Name:**\\n${BASE_NAME}\\n\\n🚀 **Primary Download Link:**\\n${LINK_MEGA}\\n\\n🔗 **Torrent Link:**\\n${LINK_TORRENT}\\n\\n🧲 **Torrent Magnet Link:**\\n${LINK_MAGNET}\\n\\n**Mirrors:**\\n\\n🚧 In order to conserve bandwidth, please consider using the *above* methods to download the release. If you have issues using those methods, you're free to download using any of the following HTTP mirrors.\\n\\n🚧 While the links *below* are not secret, **do not advertise them**. The primary MEGA link or torrent should be used to advertise any downloads.\\n\\n${LINK_HTTPS}" EMBED_DESCRIPTION+=$'\n\n**Build Name:**\n'"${BASE_NAME}"$'\n\n🚀 **Primary Download Link:**\n'"${LINK_MEGA}"$'\n\n🔗 **Torrent Link:**\n'"${LINK_TORRENT}"$'\n\n🧲 **Torrent Magnet Link:**\n'"${LINK_MAGNET}"$'\n\n**Mirrors:**\n\n🚧 In order to conserve bandwidth, please consider using the *above* methods to download the release. If you have issues using those methods, you are free to download using any of the following HTTP mirrors.\n\n🚧 While the links *below* are not secret, **do not advertise them**. The primary MEGA link or torrent should be used to advertise any downloads.\n\n'"${LINK_HTTPS}"
EMBED_DESCRIPTION=$'TESTING\nNEW\nLINES'
jq -n \ jq -n \
--arg EMBED_TITLE "$EMBED_TITLE" \ --arg EMBED_TITLE "$EMBED_TITLE" \
--arg EMBED_DESCRIPTION "$EMBED_DESCRIPTION" \ --arg EMBED_DESCRIPTION "$EMBED_DESCRIPTION" \