From 2a1dd138e0e7d1bdf62dd4abd30f3622899c6a1b Mon Sep 17 00:00:00 2001 From: Mark Sinclair <14054343+mmsinclair@users.noreply.github.com> Date: Wed, 9 Nov 2022 18:20:45 +0000 Subject: [PATCH 1/2] GH Actions: Install same dependencies as build..yml --- .github/workflows/nym-release-publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/nym-release-publish.yml b/.github/workflows/nym-release-publish.yml index 7fd455dd46..700f1d697f 100644 --- a/.github/workflows/nym-release-publish.yml +++ b/.github/workflows/nym-release-publish.yml @@ -25,6 +25,9 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Install Dependencies (Linux) + run: sudo apt-get update && sudo apt-get -y install libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev libudev-dev squashfs-tools + - name: Check the release tag starts with `nym-binaries-` if: startsWith(github.ref, 'refs/tags/nym-binaries-') == false && github.event_name != 'workflow_dispatch' uses: actions/github-script@v3 From 09b9601c7e81c2d208f6a366208bde8776ad5c5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Thu, 10 Nov 2022 09:38:38 +0100 Subject: [PATCH 2/2] Update client-core to 1.1.0 --- Cargo.lock | 2 +- clients/client-core/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 396c7dff72..108dd30382 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -578,7 +578,7 @@ dependencies = [ [[package]] name = "client-core" -version = "1.0.1" +version = "1.1.0" dependencies = [ "config", "crypto", diff --git a/clients/client-core/Cargo.toml b/clients/client-core/Cargo.toml index 0f279f4425..075c46fd29 100644 --- a/clients/client-core/Cargo.toml +++ b/clients/client-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "client-core" -version = "1.0.1" +version = "1.1.0" authors = ["Dave Hrycyszyn "] edition = "2021"