Compare commits

...

3 commits

Author SHA1 Message Date
Glenn Y. Rolland 494d565b4e Merge tag 'v0.1.3' into develop
All checks were successful
continuous-integration/drone/push Build is passing
v0.1.3
2023-12-27 11:34:02 +01:00
Glenn Y. Rolland 09567fb868 Merge branch 'release/v0.1.3'
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is failing
2023-12-27 11:33:55 +01:00
Glenn Y. Rolland 8a989c3e39 ci: fix binary delivery 2023-12-27 11:33:49 +01:00

View file

@ -44,9 +44,12 @@ steps:
- apk add --update --no-cache curl jq
- env |grep DRONE
- |
curl -H "Authorization: token $PACKAGE_UPLOAD_TOKEN" \
--upload-file "/_cache/bin/$PACKAGE_BASENAME" \
"$PACKAGE_UPLOAD_URL/$DRONE_TAG/$PACKAGE_BASENAME"
for package_path in /_cache/packages/* ; do \
package_name="$(basename "$package_path")" ; \
curl -H "Authorization: token $PACKAGE_UPLOAD_TOKEN" \
--upload-file "$package_path" \
"$PACKAGE_UPLOAD_URL/$DRONE_TAG/$PACKAGE_BASENAME" ; \
done
- |
set -x
curl -X POST \
@ -67,7 +70,7 @@ steps:
- |
set -x
for package_path in /_cache/packages/* ; do \
package_name="$(basename "$package_path")"
package_name="$(basename "$package_path")" ; \
curl -X POST \
-H "Authorization: token $RELEASE_UPLOAD_TOKEN" \
-H "accept: application/json" \