This commit is contained in:
Félix Saparelli 2019-10-28 19:05:12 +13:00
parent 97fd7c6a17
commit a0053ccda4
No known key found for this signature in database
GPG Key ID: 25940898BB90EA51
4 changed files with 9 additions and 5 deletions

View File

@ -68,11 +68,11 @@ script: ci/script.sh
before_deploy: ci/deploy.sh
deploy:
provider: releases
token:
api_key:
secure: sbV2K4G2SA78U6d8SNZKExenWnuv1MsJ/9ovDDH4ucnzkpJEWDV2iwPklcu5oaRj3Sz4jYuYXToqcbJmSjL5eXjlk8rh2sG2LWT+8Up3X1vxte2XFXko15I/613rD8E/qWfS9FqzmuhMX+gb4P7OwWvVUwtw0IIuSGfBW/TEgUTFUZnUmgdm5ra8VnV3CvmTbn8botxbkdAUvk4C0g7yqHjlV7v9xU+DEXz2Y820cAH8ulu1ZU3JBm+XfVzZ09kByeQ7wnvyRuE4RhVtKK8nKUy+2JF7HX5N+0Du8z9ZHosV6+uoUz9i2OecYzAvL8xKiSkeHBqTxIDTeM4lnnDmnm5LsJ4aEU6pBSuWhglmflTbtAN7rBfYgZGJ6je6Gem5bOcCDtGI7+2qjf00Jo7vbmyK6D6Y6yxwf3W0QnOZcXrn9BWZLMMgochIBlVTTM1zFodcprpdHo8iHNVms3A++WqLnp1O0L/55id59VITGJNafy2vmXU/nlQi2MO03s3SF3jdHT7rchYjJRAcGR79QtCLiL3CbYnaQJsDNviyMm1VC6hkst0tXB8t12v2ht5NU7NEN8E31jnnRLRnwr7LUFRgOzFVF0M5jSqs3eCLnYyI7gCMKL2qOZ2yxJuD9bKsVZDpVvUqnaj5ifE+TMYoONPrc9W1hTyfcND9MhCsM+g=
file_glob: true
file: ${PROJECT_NAME}-${TRAVIS_TAG}-${TARGET}.*
cleanup: false
skip_cleanup: true
on:
repo: watchexec/watchexec
tags: true

2
Cargo.lock generated
View File

@ -435,7 +435,7 @@ dependencies = [
[[package]]
name = "watchexec"
version = "1.10.3"
version = "1.11.0"
dependencies = [
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
"derive_builder 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package]
name = "watchexec"
version = "1.10.3"
version = "1.11.0"
authors = ["Matt Green <mattgreenrocks@gmail.com>"]
description = "Executes commands in response to file modifications"
documentation = "https://github.com/watchexec/watchexec"

View File

@ -1,5 +1,10 @@
#!/usr/bin/env bash
if [[ ! -z "$CARGO_CLIPPY" ]]; then
echo Clippy says: I shant deploy
exit 1
fi
### Vars
project="$PROJECT_NAME"
@ -18,7 +23,6 @@ if [[ "$target" == *"windows"* ]]; then
windows="1"
fi
project="cargo-watch"
build_dir=$(mktemp -d 2>/dev/null || mktemp -d -t tmp)
out_dir=$(pwd)
name="$project-$tag-$target"