From 503f79c1baaa0922ea1bb3714689c0b7b1c5bbc0 Mon Sep 17 00:00:00 2001 From: Philipp Mieden Date: Sat, 22 Jan 2022 17:23:18 +0100 Subject: [PATCH] v0.6.9 release --- version.go | 4 ++-- zeus/commands.yml | 13 ++++++------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/version.go b/version.go index 6ce59b5e..61c6c506 100644 --- a/version.go +++ b/version.go @@ -2,7 +2,7 @@ package netcap // Version is the current version identifier for netcap. -var Version = "v0.6.8" +var Version = "v0.6.9" // Commit is the git commit id of the current version. -var Commit = "cb165e72a8f926b780974163d0df2f5c1b99116f" +var Commit = "33fd3ac3e097cc163e1d7ae82b9e7e6e2ae601c9" diff --git a/zeus/commands.yml b/zeus/commands.yml index 861951b6..02d45eac 100644 --- a/zeus/commands.yml +++ b/zeus/commands.yml @@ -13,7 +13,7 @@ language: bash # globals for all commands globals: # NETCAP version - VERSION: 0.6.8 + VERSION: 0.6.9 # command data commands: @@ -117,21 +117,20 @@ commands: update-release-assets: exec: | + # upload linux build archives for f in dist-linux/*.tar.gz; do gh release upload --clobber v$VERSION $f done cd dist - # create correct darwin archives + # add nodpi darwin build - the build with dpi libs will be used untouched # TODO: fix goreleaser config tar -czvf netcap_nodpi_v${VERSION}_darwin_amd64.tar.gz netcap_macOS_nodpi_darwin_amd64 - tar -czvf netcap_${VERSION}_darwin_amd64.tar.gz netcap_darwin_amd64 - # upload + # upload nodpi darwin build to release gh release upload --clobber v$VERSION netcap_nodpi_v${VERSION}_darwin_amd64.tar.gz - gh release upload --clobber v$VERSION netcap_${VERSION}_darwin_amd64.tar.gz - # update checksums file + # update checksums file with hashes for darwin build shasum -a 256 netcap_nodpi_v${VERSION}_darwin_amd64.tar.gz >> ../dist-linux/checksums.txt shasum -a 256 netcap_${VERSION}_darwin_amd64.tar.gz >> ../dist-linux/checksums.txt cd .. @@ -139,7 +138,7 @@ commands: # append hash of windows build to final checksum file grep windows dist/checksums.txt >> dist-linux/checksums.txt - # sync + # sync updated checksums file gh release upload --clobber v$VERSION dist-linux/checksums.txt # run a test release