1
0
mirror of https://github.com/Luzifer/github-publish.git synced 2024-09-19 16:02:57 +00:00

Fix: Upload all files

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2018-01-20 20:37:15 +01:00
parent 09696c9141
commit 954f943ddb
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
4001336d78a40580ce012220a6363b62023437473f8df97549836946022f226d golang.sh
b1b8eb198d7880e522f66dd3b10d68de4bce80852088c3f8c93c5f8984c68319 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 ${REPO}_* SHA256SUMS; do
for file in * SHA256SUMS; do
echo "- ${file}"
github-release upload --user ${GHUSER} --repo ${REPO} --tag ${DEPLOYMENT_TAG} --name ${file} --file ${file}
done