diff options
author | 2020-05-04 08:51:49 -0700 | |
---|---|---|
committer | 2020-05-04 08:51:49 -0700 | |
commit | d49647d288de63638ffd040e35fa857909d48a61 (patch) | |
tree | 0eebdf73bf84f2ce06cd3512947e38430fd958b5 /.github/actions/release/Dockerfile | |
parent | 36748fef0d4114327ee01f3ff43524483a1e39af (diff) | |
download | subsurface-d49647d288de63638ffd040e35fa857909d48a61.tar.gz |
GitHub Actions: stop creating CI releases
Net net this has caused more problems than it solved. Too often binaries
were missing or broken. Instead 'release equivalent' binaries are now
consistently posted to downloads/test via a Webhook.
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, 0 insertions, 11 deletions
diff --git a/.github/actions/release/Dockerfile b/.github/actions/release/Dockerfile deleted file mode 100644 index af27016e1..000000000 --- a/.github/actions/release/Dockerfile +++ /dev/null @@ -1,11 +0,0 @@ -FROM alpine:latest - -RUN apk add --no-cache \ - bash \ - ca-certificates \ - curl \ - jq - -COPY upload /usr/bin/upload - -ENTRYPOINT ["/usr/bin/upload"] |