Skip to content

Commit

Permalink
fix(ci): fix publish action (#10)
Browse files Browse the repository at this point in the history
fixes publish action with `apt-get update`
  • Loading branch information
Lazar955 authored Aug 13, 2024
1 parent 09510cc commit b583081
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit b583081

Please sign in to comment.