Skip to content

Commit 6a7a18b

Browse files
author
rubyist
committed
Fix release script
1 parent 09b9bbb commit 6a7a18b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

script/release

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -108,25 +108,25 @@ echo "Created release id: $id"
108108

109109
# Upload each file to the release
110110
upload=$(cat $out | jq -r ".upload_url" | sed s/"{?name}"//)
111-
echo "Uploading harbor-darwin-amd64-$version.tar.gz"
111+
echo "Uploading lfs-test-server-darwin-amd64-$version.tar.gz"
112112
curl -n -o $out -H "Content-Type: application/octet-stream" -X POST --data-binary @dist/lfs-test-server-darwin-amd64-$version.tar.gz "$upload?name=lfs-test-server-darwin-amd64-$version.tar.gz&label=Mac%20AMD64"
113113

114-
echo "Uploading harbor-linux-386-$version.tar.gz"
114+
echo "Uploading lfs-test-server-linux-386-$version.tar.gz"
115115
curl -n -o $out -H "Content-Type: application/octet-stream" -X POST --data-binary @dist/lfs-test-server-linux-386-$version.tar.gz "$upload?name=lfs-test-server-linux-386-$version.tar.gz&label=Linux%20386"
116116

117-
echo "Uploading harbor-linux-amd64-$version.tar.gz"
117+
echo "Uploading lfs-test-server-linux-amd64-$version.tar.gz"
118118
curl -n -o $out -H "Content-Type: application/octet-stream" -X POST --data-binary @dist/lfs-test-server-linux-amd64-$version.tar.gz "$upload?name=lfs-test-server-linux-amd64-$version.tar.gz&label=Linux%20AMD64"
119119

120-
echo "Uploading harbor-freebsd-386-$version.tar.gz"
120+
echo "Uploading lfs-test-server-freebsd-386-$version.tar.gz"
121121
curl -n -o $out -H "Content-Type: application/octet-stream" -X POST --data-binary @dist/lfs-test-server-freebsd-386-$version.tar.gz "$upload?name=lfs-test-server-freebsd-386-$version.tar.gz&label=FreeBSD%20386"
122122

123-
echo "Uploading harbor-freebsd-amd64-$version.tar.gz"
123+
echo "Uploading lfs-test-server-freebsd-amd64-$version.tar.gz"
124124
curl -n -o $out -H "Content-Type: application/octet-stream" -X POST --data-binary @dist/lfs-test-server-freebsd-amd64-$version.tar.gz "$upload?name=lfs-test-server-freebsd-amd64-$version.tar.gz&label=FreeBSD%20AMD64"
125125

126-
echo "Uploading harbor-windows-386-$version.zip"
126+
echo "Uploading lfs-test-server-windows-386-$version.zip"
127127
curl -n -o $out -H "Content-Type: application/octet-stream" -X POST --data-binary @dist/lfs-test-server-windows-386-$version.zip "$upload?name=lfs-test-server-windows-386-$version.zip&label=Windows%20386"
128128

129-
echo "Uploading harbor-windows-amd64-$version"
129+
echo "Uploading lfs-test-server-windows-amd64-$version"
130130
curl -n -o $out -H "Content-Type: application/octet-stream" -X POST --data-binary @dist/lfs-test-server-windows-amd64-$version.zip "$upload?name=lfs-test-server-windows-amd64-$version.zip&label=Windows%20AMD64"
131131

132132
rm -f $tmpl $out

0 commit comments

Comments
 (0)