A simple HTTP endpoint to upload distfiles from Travis CI.
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2021-01-01 22:50:51 +01:00
tests Refactor the app and add tests 2018-10-04 19:21:49 +02:00
.gitignore initial commit 2018-01-26 16:06:00 +01:00
distfiles_api.py create LATEST_RELEASE symlink 2021-01-01 22:50:51 +01:00
README.md updated README.md 2018-03-14 00:48:20 +01:00
requirements-prod.txt update dependencies 2020-04-26 02:07:15 +02:00
requirements-test.txt update dependencies 2020-04-26 02:07:15 +02:00
requirements.txt update dependencies 2020-04-26 02:07:15 +02:00

distfiles-api

A simple HTTP endpoint to upload distfiles from Travis CI.

Client usage:

$ curl ${TOKEN}@localhost/ \
      -F 'file=@blogc-0.13.0.tar.gz' \
      -F 'project=blogc' \
      -F 'version=0.13.0' \
      -F "sha512=$(sha512sum blogc-0.13.0.tar.gz)" \
      -F "extract=false"