Commit 84f098fe by Iwasaki Yudai

Generate shasums

1 parent ca66b46f
Showing with 6 additions and 0 deletions
......@@ -49,5 +49,8 @@ targz:
mkdir -p ${OUTPUT_DIR}/dist
cd ${OUTPUT_DIR}/pkg/; for osarch in *; do (cd $$osarch; tar zcvf ../../dist/gotty_$$osarch.tar.gz ./*); done;
shasums:
cd ${OUTPUT_DIR}/dist; shasum * > ./SHASUMS
release:
ghr --delete --prerelease -u yudai -r gotty pre-release ${OUTPUT_DIR}/dist
......@@ -19,6 +19,9 @@ build:
name: targz
code: make targz OUTPUT_DIR=$WERCKER_OUTPUT_DIR
- script:
name: shasums
code: make shasums OUTPUT_DIR=$WERCKER_OUTPUT_DIR
- script:
name: store Makefile
code: cp Makefile $WERCKER_OUTPUT_DIR/
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!