1
0
mirror of https://github.com/Luzifer/github-publish.git synced 2024-09-19 07:52:56 +00:00

Do not upload SHA256SUMS twice

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2018-01-20 20:41:36 +01:00
parent 954f943ddb
commit a346ae949a
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
05e4977d541b2ef07c757acca912b7b58b379fb425eceb3a1f53c829a78a4aa4 docker2aci.sh
b1b8eb198d7880e522f66dd3b10d68de4bce80852088c3f8c93c5f8984c68319 golang.sh
b3fb1862829bd85992de6c234d3895483fb92a963a489376fde32182fa5a8c55 golang.sh

View File

@ -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