diff --git a/.travis.yml b/.travis.yml index 68b19b4..088fdbe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,7 +23,7 @@ deploy: api_key: "${GITHUB_TOKEN}" overwrite: true file_glob: true - file: build/sweetcher*.zip + file: build/sweetcher*.* skip_cleanup: true draft: false on: diff --git a/dist.sh b/dist.sh index 84e8a28..04459c0 100755 --- a/dist.sh +++ b/dist.sh @@ -30,6 +30,7 @@ for PLATFORM in $(find ./build -mindepth 1 -maxdepth 1 -type d); do pushd $PLATFORM >/dev/null 2>&1 zip ../sweetcher_${OSARCH}.zip ./* + tar czvf ../sweetcher_${OSARCH}.tgz ./* rm ./* popd >/dev/null 2>&1 done