diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-10-17 16:12:42 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-10-18 20:46:01 -0700 |
commit | aff54e17e5bb0642df2417014cb541ff0900a114 (patch) | |
tree | 07bec7a04b5fb34e64a8fbae66d7ce2dd0e6cf7e /.github/actions/release/Dockerfile | |
parent | f099b22820f09ef04395e46d822b0fe2cbcfeb8d (diff) | |
download | subsurface-aff54e17e5bb0642df2417014cb541ff0900a114.tar.gz |
GitHub Actions: post releases
This so far just works on push and hopefullt pull requests, not for tags
and therefore actual releases.
In order not to conflict with the binaries from Travis, I changed the
name to "ci-release" instead of "continuous".
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to '.github/actions/release/Dockerfile')
-rw-r--r-- | .github/actions/release/Dockerfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/actions/release/Dockerfile b/.github/actions/release/Dockerfile new file mode 100644 index 000000000..af27016e1 --- /dev/null +++ b/.github/actions/release/Dockerfile @@ -0,0 +1,11 @@ +FROM alpine:latest + +RUN apk add --no-cache \ + bash \ + ca-certificates \ + curl \ + jq + +COPY upload /usr/bin/upload + +ENTRYPOINT ["/usr/bin/upload"] |