We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b899713 commit 8df2b25Copy full SHA for 8df2b25
.gitignore
@@ -19,4 +19,5 @@ faster
19
of-watchdog*
20
build
21
template
22
+**/*.sha256
23
.travis.yml
@@ -9,6 +9,8 @@ addons:
9
before_install:
10
script:
11
- sh build.sh
12
+before_deploy:
13
+ - ./ci/hashgen.sh
14
deploy:
15
provider: releases
16
api_key:
@@ -19,6 +21,11 @@ deploy:
- "./of-watchdog-arm64"
- "./of-watchdog-darwin"
- "./of-watchdog.exe"
24
+ - "./of-watchdog.sha256"
25
+ - "./of-watchdog-armhf.sha256"
26
+ - "./of-watchdog-arm64.sha256"
27
+ - "./of-watchdog-darwin.sha256"
28
+ - "./of-watchdog.exe.sha256"
29
skip_cleanup: true
30
on:
31
tags: true
ci/hashgen.sh
@@ -0,0 +1,3 @@
1
+#!/bin/sh
2
+
3
+for f in of-watchdog*; do shasum -a 256 $f > $f.sha256; done
0 commit comments