Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeny-stakewise committed Feb 2, 2025
1 parent f014507 commit fa6feaa
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: 3.12.8

# Install poetry
- name: Load cached Poetry installation
uses: actions/cache@v3
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ jobs:
run: |
brew install libpq
brew link --force libpq
brew install [email protected]
if: matrix.os == 'macos-14'

- uses: actions/setup-python@v4
Expand All @@ -123,13 +124,6 @@ jobs:
with:
poetry-version: "1.8.3"

- name: Install dependencies
run: poetry install --with build --without dev --no-interaction --no-root
env:
# For building psycopg on MacOS
LDFLAGS: "-L/opt/homebrew/opt/openssl@3/lib"
CPPFLAGS: "-I/opt/homebrew/opt/openssl@3/include"

- name: Check system OpenSSL version
run: "openssl version"
if: matrix.os == 'macos-14'
Expand All @@ -142,6 +136,13 @@ jobs:
run: "python -c \"import ssl; print(ssl.OPENSSL_VERSION)\""
if: matrix.os == 'macos-14'

- name: Install dependencies
run: poetry install --with build --without dev --no-interaction --no-root
env:
# For building psycopg on MacOS
LDFLAGS: "-L/opt/homebrew/opt/[email protected]/lib"
CPPFLAGS: "-I/opt/homebrew/opt/[email protected]/include"

- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "v3-operator"
version = "v3.0.2.rc10"
version = "v3.0.2.rc11"
description = "StakeWise operator service for registering vault validators"
authors = ["StakeWise Labs <[email protected]>"]
package-mode = false
Expand Down

0 comments on commit fa6feaa

Please sign in to comment.