From d0667bb70f20751e5f073eae4ba5040b601279ac Mon Sep 17 00:00:00 2001 From: Rostislav Raykov Date: Wed, 18 Sep 2019 10:42:27 +0200 Subject: [PATCH 1/2] fix: Still trying to figure out the correct syntax for GitHub Actions sometimes --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 571f557..a135927 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,13 +25,13 @@ jobs: - name: Get the version run: echo ::set-env name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3) - 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 uses: softprops/action-gh-release@v1 with: body: | - cloudflare-ddns release ${{ VERSION }} + cloudflare-ddns release $VERSION files: | - cloudflare-ddns-${{ VERSION }} + cloudflare-ddns-$VERSION env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From a6ee74ffe4f686b0334fa536c9eab12aebce41ad Mon Sep 17 00:00:00 2001 From: Rostislav Raykov Date: Wed, 18 Sep 2019 10:44:18 +0200 Subject: [PATCH 2/2] chore: Bump up version number to 0.1.3 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 00aff47..bef12b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -153,7 +153,7 @@ dependencies = [ [[package]] name = "cloudflare-ddns" -version = "0.1.2" +version = "0.1.3" dependencies = [ "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)", diff --git a/Cargo.toml b/Cargo.toml index f46ba70..477fc69 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudflare-ddns" -version = "0.1.2" +version = "0.1.3" authors = ["Rostislav Raykov "] edition = "2018" description = "A simple CLI tool to use Cloudflare's free DDNS service"