Merge branch 'release/0.1.4'

This commit is contained in:
Rostislav Raykov 2019-09-18 10:49:54 +02:00
commit 4ae22d878f
3 changed files with 5 additions and 5 deletions

View file

@ -25,13 +25,13 @@ jobs:
- name: Get the version - name: Get the version
run: echo ::set-env name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3) run: echo ::set-env name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
- name: Archive - name: Archive
run: tar cfJ cloudflare-ddns-$VERSION.tar.xz target/release/cloudflare-ddns run: tar cfJ cloudflare-ddns-${VERSION}.tar.xz target/release/cloudflare-ddns
- name: Create release - name: Create release
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
with: with:
body: | body: |
cloudflare-ddns release $VERSION cloudflare-ddns release ${VERSION}
files: | files: |
cloudflare-ddns-$VERSION cloudflare-ddns-${VERSION}
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

2
Cargo.lock generated
View file

@ -153,7 +153,7 @@ dependencies = [
[[package]] [[package]]
name = "cloudflare-ddns" name = "cloudflare-ddns"
version = "0.1.3" version = "0.1.4"
dependencies = [ dependencies = [
"exitcode 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "exitcode 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "cloudflare-ddns" name = "cloudflare-ddns"
version = "0.1.3" version = "0.1.4"
authors = ["Rostislav Raykov <z@zbrox.org>"] authors = ["Rostislav Raykov <z@zbrox.org>"]
edition = "2018" edition = "2018"
description = "A simple CLI tool to use Cloudflare's free DDNS service" description = "A simple CLI tool to use Cloudflare's free DDNS service"