Update n checksum with autoupdater

This commit is contained in:
tituspijean 2022-04-28 21:39:23 +02:00
parent c0e9b3ba8e
commit 9c804d1ca2
No known key found for this signature in database
GPG key ID: EF3B0D7CC0A94720

View file

@ -70,6 +70,9 @@ echo "Calculated checksum for n v${version} is $checksum"
# Replace new version in helper
sed -i -E "s/^n_version=.*$/n_version=$version/" helpers/nodejs
# Replace checksum in helper
sed -i -E "s/^n_checksum=.*$/n_checksum=$checksum\"/" helpers/nodejs
# The Action will proceed only if the PROCEED environment variable is set to true
echo "PROCEED=true" >> $GITHUB_ENV
exit 0