mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-22 14:53:30 +00:00
Create SHASUMS
Closes: #111 Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
This commit is contained in:
@ -15,6 +15,9 @@ script:
|
||||
- make prepare-test
|
||||
- make test-e2e
|
||||
|
||||
before_deploy:
|
||||
- ./hack/hashgen.sh
|
||||
|
||||
deploy:
|
||||
provider: releases
|
||||
api_key:
|
||||
@ -23,6 +26,9 @@ deploy:
|
||||
- ./bin/faasd
|
||||
- ./bin/faasd-armhf
|
||||
- ./bin/faasd-arm64
|
||||
- ./bin/faasd.sha256
|
||||
- ./bin/faasd-armhf.sha256
|
||||
- ./bin/faasd-arm64.sha256
|
||||
skip_cleanup: true
|
||||
on:
|
||||
tags: true
|
||||
|
3
hack/hashgen.sh
Executable file
3
hack/hashgen.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
for f in bin/faasd*; do shasum -a 256 $f > $f.sha256; done
|
Reference in New Issue
Block a user