1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pleroma_ynh.git synced 2024-09-03 20:15:59 +02:00

Fix auto-updater multiline env variable

This commit is contained in:
tituspijean 2022-12-21 18:09:04 +01:00
parent 2e97b5c020
commit 9c7bc86aa6
No known key found for this signature in database
GPG key ID: EF3B0D7CC0A94720

View file

@ -36,7 +36,9 @@ echo "Current version: $current_version"
echo "Latest release from upstream: $version"
echo "VERSION=$version" >> $GITHUB_ENV
echo "RELEASE=$release" >> $GITHUB_ENV
echo "DESCRIPTION=$description" >> $GITHUB_ENV
echo "DESCRIPTION<<EOF" >> $GITHUB_ENV
echo "$description" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
# For the time being, let's assume the script will fail
echo "PROCEED=false" >> $GITHUB_ENV