From 9b66ad99b10c52f16494523b18ce993df9f3a283 Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Fri, 16 Apr 2021 11:51:55 -0700 Subject: [PATCH] Fix package release workflow --- .github/workflows/release.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 57e4567..37ceef9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: version=${gh_tag#refs/tags/v} echo "Working with version $version" grep -q "version = \"$version\"" Cargo.toml || { echo "Version mismatch"; exit 1; } - echo "::set-env name=DEB_PKG_NAME::ptools_${version}_amd64.deb" + echo "DEB_PKG_NAME=ptools_${version}_amd64.deb" >> $GITHUB_ENV - name: Install cargo-deb run: cargo install cargo-deb --version 1.27.0 - name: Build package diff --git a/Cargo.toml b/Cargo.toml index 2d52c0c..dc35c4a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ptools" -version = "0.1.0" +version = "0.2.0" authors = ["John Gallagher"] license = "Apache-2.0" description = "Utilities for inspecting Linux processes"