File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ script:
25
25
after_success :
26
26
- docker pull stashapp/compiler:4
27
27
- sh ./scripts/cross-compile.sh
28
+ - git describe --tags --exclude latest_develop | tee CHECKSUMS_SHA1
29
+ - sha1sum dist/stash-* | sed 's/dist\///g' | tee -a CHECKSUMS_SHA1
28
30
- ' if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then sh ./scripts/upload-pull-request.sh; fi'
29
31
before_deploy :
30
32
# push the latest tag when on the develop branch
@@ -47,6 +49,7 @@ deploy:
47
49
- dist/stash-linux-arm64v8
48
50
- dist/stash-linux-arm32v7
49
51
- dist/stash-pi
52
+ - CHECKSUMS_SHA1
50
53
skip_cleanup : true
51
54
overwrite : true
52
55
name : " ${STASH_VERSION}: Latest development build"
@@ -73,6 +76,7 @@ deploy:
73
76
- dist/stash-linux-arm64v8
74
77
- dist/stash-linux-arm32v7
75
78
- dist/stash-pi
79
+ - CHECKSUMS_SHA1
76
80
# make the release a draft so the maintainers can confirm before releasing
77
81
draft : true
78
82
skip_cleanup : true
Original file line number Diff line number Diff line change @@ -33,3 +33,6 @@ uploadFile()
33
33
uploadFile " dist/stash-osx"
34
34
uploadFile " dist/stash-win.exe"
35
35
uploadFile " dist/stash-linux"
36
+
37
+ echo " SHA1 Checksums"
38
+ cat CHECKSUMS_SHA1 | grep -v ' \-pi\|\-arm'
You can’t perform that action at this time.
0 commit comments