Skip to content

Commit

Permalink
fix: install poetry deps
Browse files Browse the repository at this point in the history
  • Loading branch information
sb-ghvcs committed Oct 18, 2024
1 parent 3f48233 commit b12165b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Install Poetry
run: |
pip install poetry
- name: Setup dependencies
- name: Install Erlang Dependencies
run: |
sudo apt update
sudo apt upgrade -y
Expand All @@ -52,6 +52,9 @@ jobs:
sudo apt-get install -y ncurses-dev
# Install OpenSSL and Development Headers
sudo apt install -y openssl libssl-dev
- name: Install Poetry Dependencies
run: |
poetry install
- name: Verify Dependencies
run: |
tar --version
Expand Down Expand Up @@ -137,6 +140,9 @@ jobs:
pip install poetry
- name: Install WSL dependencies
run: apt update && apt install -y g++-mingw-w64 gcc-mingw-w64 make autoconf unzip
- name: Install Poetry Dependencies
run: |
poetry install
- name: Install openssl
shell: cmd
run: |
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[tool.poetry]
package-mode = false
name = "rabbitmq-portable"
version = "0.1.0"
description = "A portable binary to run rabbitmq server"
Expand Down

0 comments on commit b12165b

Please sign in to comment.