From a346ae949a47ca7fd9535f4a39527fdf20f86815 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Sat, 20 Jan 2018 20:41:36 +0100 Subject: [PATCH] Do not upload SHA256SUMS twice Signed-off-by: Knut Ahlers --- SHA256SUMS | 2 +- golang.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SHA256SUMS b/SHA256SUMS index 192068b..f77edbc 100644 --- a/SHA256SUMS +++ b/SHA256SUMS @@ -1,2 +1,2 @@ 05e4977d541b2ef07c757acca912b7b58b379fb425eceb3a1f53c829a78a4aa4 docker2aci.sh -b1b8eb198d7880e522f66dd3b10d68de4bce80852088c3f8c93c5f8984c68319 golang.sh +b3fb1862829bd85992de6c234d3895483fb92a963a489376fde32182fa5a8c55 golang.sh diff --git a/golang.sh b/golang.sh index 6f138d9..774cbe3 100755 --- a/golang.sh +++ b/golang.sh @@ -77,7 +77,7 @@ step Create a drafted release github-release release --user ${GHUSER} --repo ${REPO} --tag ${DEPLOYMENT_TAG} --name ${DEPLOYMENT_TAG} --draft || true step Upload build assets -for file in * SHA256SUMS; do +for file in *; do echo "- ${file}" github-release upload --user ${GHUSER} --repo ${REPO} --tag ${DEPLOYMENT_TAG} --name ${file} --file ${file} done