Skip to content

Commit

Permalink
chore(ci): Compute and upload checksums upon release (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
znerol committed Apr 21, 2019
1 parent 6c489b2 commit 3904850
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,11 @@ jobs:
api_key:
secure: Prt6R7qAfOJGi/HLcyGUFCZG/QZGqjA+l553zZ7owT2n72skyzR3NAdMRi90hCzzIbnEGctQnVVKlrK75BnoAGWrTo0m5h2vtxpYy91k7GdlhRiswCn3X2hlqUnmeN7+rHuKK16BGx9Nn5JWo8sHAcFPJXFTH3Ad7k2h62D+L/p/hU5YvPOT9n5r3xkMUnOBLnx9ZHvmU6YastB6QkCz1LAAbox5xTO/NmiEswUt+E8MMAqEQU1JlwkhgnW24znFgi8JYq6MTyuC9P0M9JPzjaVaAy0gETGZzL5XVdX/W147VIW2UDlgqVgn+30JfMwlLERiU9NuDO1bllPo9WzkpXyqPN/4upQS8v6WD3u8rBwftK0+MkhHQwBoG3qjnPm01mWh+M9gP/JC1cjgXUmGasmkJDh/r9wPk8Of1ZOFCvE2jdAnbXnuvzimMUPhdFj412QQBnGsBGqVoJwOSZJ2s/A0Bo/LGYiEtZqfWeSjLifNar83fwIdb3P8HUV/+hdUwyBsKW5DbhwMBroGr151W1wIiqQ+UVaFiFdZw1E86MB46lSgMCRCYVdow+LO/WYAz6C9/FVFnfazxCcbdAymPm29lVsM9agQb/+Br0+Nz12oUpNk8olRDeQng5bdPH2EcGUsRPZtDnoyCxofc8LdJ0h9eXOG/sBeuKL5hpjcP1I=
file:
- dist/certhub-src.tar.gz
- dist/certhub-dist.tar.gz
- dist/certhub-src.tar.gz
- dist/md5sum.txt
- dist/sha1sum.txt
- dist/sha256sum.txt
skip_cleanup: true
draft: true
on:
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,9 @@ dist-src:
git archive -o dist/certhub-src.tar.gz HEAD

dist: dist-src dist-bin
cd dist && md5sum certhub-*.tar.gz > md5sum.txt
cd dist && sha1sum certhub-*.tar.gz > sha1sum.txt
cd dist && sha256sum certhub-*.tar.gz > sha256sum.txt

integration-test: dist
${MAKE} -C integration-test all
Expand Down

0 comments on commit 3904850

Please sign in to comment.