From 95a4f97f58aea79ffdca59caaa25e458ef5f8a4d Mon Sep 17 00:00:00 2001 From: shimunn Date: Sun, 22 Sep 2019 21:18:18 +0200 Subject: [PATCH] 0.2.0 --- .drone.yml | 20 ++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 58e001b..722cf95 100644 --- a/.drone.yml +++ b/.drone.yml @@ -12,3 +12,23 @@ steps: commands: - apt update && apt install -y libcryptsetup-dev libkeyutils-dev - cargo test + + - name: build + image: rust:1.37.0 + commands: + - apt update && apt install -y libcryptsetup-dev libkeyutils-dev + - cargo install -f --path . --root . + when: + event: tag + - name: publish + image: plugins/github-release + settings: + api_key: + from_secret: github_release + files: + - bin/fido2luks + checksum: + - md5 + - sha256 + when: + event: tag diff --git a/Cargo.toml b/Cargo.toml index 94d7a04..b26501c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fido2luks" -version = "0.1.0" +version = "0.2.0" authors = ["shimunn "] edition = "2018"