Remove stdout assertion from release

This commit is contained in:
William Martin 2024-10-17 15:54:50 +02:00
parent 473faea573
commit 24fc2db395

View file

@ -13,13 +13,14 @@ exec gh release create v1.2.3 --notes 'awesome release' --latest
# Upload an asset to the release
exec gh release upload v1.2.3 ../asset.txt
stdout ''
# Download the asset from the release
exec gh release download v1.2.3
exists asset.txt
# Download the asset in archive form
exec gh release download v1.2.3 --archive=zip
exists $SCRIPT_NAME-$RANDOM_STRING-1.2.3.zip
-- asset.txt --
Hello, world!
Hello, world!