Skip to content

Commit

Permalink
Merge #2
Browse files Browse the repository at this point in the history
2: Release version 0.1.0 r=jix a=jix



Co-authored-by: Jannis Harder <[email protected]>
  • Loading branch information
bors[bot] and jix committed May 16, 2019
2 parents 1b3c2d8 + 60b7096 commit 93ecc0c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
test_and_deploy:
docker:
- image: jixone/rust-ci:rust-stable
- image: jixone/rust-ci:rust-deploy
steps:
- checkout
- run: |
Expand All @@ -20,13 +20,15 @@ jobs:
mkdir -p /tmp/workspace/release
if [[ $VER != master ]]; then
cargo package
ghr -t $GITHUB_TOKEN \
-u $CIRCLE_PROJECT_USERNAME \
-r $CIRCLE_PROJECT_REPONAME \
-c $CIRCLE_SHA1 \
-n "vec_mut_scan $VER" \
-delete v$VER \
/tmp/workspace/release
target/package
cargo login $CARGO_TOKEN
Expand Down
5 changes: 0 additions & 5 deletions .circleci/setup_git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,4 @@ if [ ! -z ${CIRCLECI+x} ]; then
# Git needs a user/email to commit under
git config --global user.name "CI Deploy"
git config --global user.email "[email protected]"

# We setup our ssh push key
echo "$SSH_PRIVKEY" | base64 -d > ~/.ssh/id_ed25519
echo "$SSH_PUBKEY" > ~/.ssh/id_ed25519.pub
chmod -R go= ~/.ssh
fi
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vec_mut_scan"
version = "0.0.0"
version = "0.1.0"
authors = ["Jannis Harder <[email protected]>"]
edition = "2018"
description = "Forward scan over a vector with mutation and item removal"
Expand Down

0 comments on commit 93ecc0c

Please sign in to comment.