1
0
mirror of https://github.com/rancher/os.git synced 2025-07-31 22:47:16 +00:00

Merge pull request #1459 from SvenDowideit/fix-release-upload-cmds

Fix the commanline hints to upload release
This commit is contained in:
Sven Dowideit 2016-12-12 13:58:36 +10:00 committed by GitHub
commit d444edd82f

View File

@ -14,8 +14,7 @@ echo "--- Run"
echo "github-release release --user rancher --repo os --tag ${VERSION} --pre-release --draft"
for file in $(ls dist/artifacts/); do
if [ "$file" != "installer.tar" ]; then
echo "github-release upload --user rancher --repo os --tag ${VERSION} \
--file ./dist/kernel/${file} -name ${file}"
echo "github-release upload --user rancher --repo os --tag ${VERSION} --file ./dist/artifacts/${file} --name ${file}"
fi
done
echo