From b583081e030bd4902c1469bc00105578a9573770 Mon Sep 17 00:00:00 2001
From: Lazar <12626340+Lazar955@users.noreply.github.com>
Date: Tue, 13 Aug 2024 11:34:09 +0200
Subject: [PATCH] fix(ci): fix publish action (#10)

fixes publish action with `apt-get update`
---
 .github/workflows/publish.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 8af43ef7..b49b58f6 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -15,7 +15,10 @@ jobs:
      run-unit-tests: true
      run-integration-tests: true
      run-lint: true
-     install-dependencies-command: sudo apt-get install libzmq3-dev
+     install-dependencies-command: |
+       sudo apt-get update
+       sudo apt-get install -y libzmq3-dev
+
 
   docker_pipeline:
     needs: ["lint_test"]