Skip to content

Commit 9b66ad9

Browse files
committed
Fix package release workflow
1 parent a7301b1 commit 9b66ad9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
version=${gh_tag#refs/tags/v}
2222
echo "Working with version $version"
2323
grep -q "version = \"$version\"" Cargo.toml || { echo "Version mismatch"; exit 1; }
24-
echo "::set-env name=DEB_PKG_NAME::ptools_${version}_amd64.deb"
24+
echo "DEB_PKG_NAME=ptools_${version}_amd64.deb" >> $GITHUB_ENV
2525
- name: Install cargo-deb
2626
run: cargo install cargo-deb --version 1.27.0
2727
- name: Build package

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ptools"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["John Gallagher"]
55
license = "Apache-2.0"
66
description = "Utilities for inspecting Linux processes"

0 commit comments

Comments
 (0)