From 9cbd02d20d374ac1e93cf4e59981940476e58898 Mon Sep 17 00:00:00 2001 From: MaxPeal <30347730+MaxPeal@users.noreply.github.com> Date: Tue, 12 May 2020 12:54:59 +0200 Subject: [PATCH] add shasum create for releases bin files --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f6aca3a7..89f38810 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ env: script: - make binaries validate-all && TARGETPLATFORM="${CROSS_PLATFORMS}" ./hack/cross - + - for i in ./out/*; do shasum --binary -a 256 "$i" >> "$i.sha256"; done deploy: - provider: script @@ -32,4 +32,4 @@ deploy: on: repo: docker/buildx tags: true - condition: $TRAVIS_TAG =~ ^v[0-9] \ No newline at end of file + condition: $TRAVIS_TAG =~ ^v[0-9]